I use the Camera Manager framework for my app: https://github.com/imaginary-cloud/CameraManager
I understand that to shoot image, it is pretty simple:
cameraManager.capturePictureWithCompletition({ (image, error) -> Void in
self.myImage = image
})
But, I would like to stock in the documentsDirectory and not in the camera roll.
Somebody have an idea? Maybe like the Video records?
cameraManager.startRecordingVideo()
cameraManager.stopRecordingVideo({ (videoURL, error) -> Void in
NSFileManager.defaultManager().copyItemAtURL(videoURL, toURL: self.myVideoURL, error: &error)
})