Permission to take photo OR get image from library not shown in iOS9 (Xcode 7beta, Swift2)
The code below shows an example for my access to the image lib. No matter where I call the code (view) I do not see the permission dialog from the phone popping up and therefore cannot allow my app to access either camera or library. Also, the privacy settings do not show my app either. Any thoughts? I'm going nuts. let imgPicker = UIImagePickerController() imgPicker.sourceType = UIImagePickerControllerSourceType.PhotoLibrary imgPicker.modalPresentationStyle = UIModalPresentationStyle.Popover self.presentViewController(imgPicker, animated: true, completion: nil) another way I tried if