Image 将图像保存到特殊相册swift

Image 将图像保存到特殊相册swift,image,swift,ios8,Image,Swift,Ios8,我想在某个相册中添加一张新照片,我正在尝试这样做: override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { albumName = "\(data.objectAtIndex(indexPath.row))" let imagePickerController = UIImagePickerController() imagePi

我想在某个相册中添加一张新照片,我正在尝试这样做:

override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {

    albumName = "\(data.objectAtIndex(indexPath.row))"

    let imagePickerController = UIImagePickerController()
    imagePickerController.delegate = self

    let actionSheet = UIAlertController(title: "Choose image source", message: nil, preferredStyle: UIAlertControllerStyle.ActionSheet)

    actionSheet.addAction(UIAlertAction(title: "Take Photo", style: UIAlertActionStyle.Default, handler: { (alert:UIAlertAction!) -> Void in
        imagePickerController.sourceType = UIImagePickerControllerSourceType.Camera
        self.presentViewController(imagePickerController, animated: true, completion: {})

    }))

    actionSheet.addAction(UIAlertAction(title: "Camera Roll", style: UIAlertActionStyle.Default, handler: { (alert:UIAlertAction!) -> Void in
        imagePickerController.sourceType = UIImagePickerControllerSourceType.PhotoLibrary
        self.presentViewController(imagePickerController, animated: true, completion: nil)

    }))

    actionSheet.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil))

    self.presentViewController(actionSheet, animated: true, completion: nil)

}


func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [NSObject : AnyObject]) {
    let image:UIImage = info[UIImagePickerControllerOriginalImage] as UIImage

    var groupToAddTo: ALAssetsGroup = ALAssetsGroup()

    self.library.enumerateGroupsWithTypes(ALAssetsGroupType(ALAssetsGroupAlbum),
        usingBlock: {
            (group: ALAssetsGroup!, stop: UnsafeMutablePointer<ObjCBool>) -> Void in
            if group.valueForProperty(ALAssetsGroupPropertyName).isEqualToString(self.albumName){
                groupToAddTo = group
            }
        },
        failureBlock: {
            (myerror: NSError!) -> Void in
            println("error occurred: \(myerror.localizedDescription)")
    })

    var img: CGImageRef = image.CGImage

    self.library.writeImageToSavedPhotosAlbum(img, metadata: nil, completionBlock: {
        (assetUrl: NSURL!, error: NSError!) -> Void in
        if error.code == 0 {
            println("saved image completed: \(assetUrl)")

            self.library.assetForURL(assetUrl, resultBlock: { (asset: ALAsset!) -> Void in
                groupToAddTo.addAsset(asset)
                return
                }, failureBlock: {
                    (myerror: NSError!) -> Void in
                    println("error occurred: \(myerror.localizedDescription)")
            })
        } else {
            println("saved image failed. \(error.localizedDescription) code \(error.code)")
        }
    } )




}
在这方面:

if group.valueForProperty(ALAssetsGroupPropertyName).isEqualToString(self.albumName){

所以,问题是,如何将图像保存到swift中的某个相册中?

我打赌albumName是一个可选值

您应该放置一个
if
语句来判断almbumName是否为nil。当它为
nil
时,在iPhone上创建一个新的唱片集名称。

首先:

if group != nil {
   if group.valueForProperty(ALAssetsGroupPropertyName).isEqualToString(self.albumNames[indexPath.row]){
       groupToAddTo = group
   }
}
其次,当error=nil时,您的应用程序将因“if error.code==0”而崩溃。改为“if error==nil”

if group != nil {
   if group.valueForProperty(ALAssetsGroupPropertyName).isEqualToString(self.albumNames[indexPath.row]){
       groupToAddTo = group
   }
}