I got a CFString conversion. Error message:
Cannot set type value '[CFString]' to type value '[String].
How to fix?
picker.sourceType = UIImagePickerControllerSourceType.Camera picker.allowsEditing = false picker.mediaTypes = [kUTTypeImage] //Error Message : Cannot assign a value of type '[CFString]' to a value of type '[String]' picker.delegate = self picker.modalPresentationStyle = .Popover presentViewController(picker, animated: true, completion: nil)//
source share