Good afternoon in my app I take a photo with the camera and then I keep it in the camera's photo album, but it saves it with a name by default I would like to know how to put the name I want to the photo, The code that I have when I save the image is the following:
func imagePickerController(picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : AnyObject]) {
self.guardaImagen = info[UIImagePickerControllerOriginalImage] as? UIImage
UIImageWriteToSavedPhotosAlbum(self.guardaImagen!, nil, nil, nil);
self.imagePick.dismissViewControllerAnimated(true, completion: {
self.performSegueWithIdentifier("envioFotoLink", sender: self)
})
}