iOS 10 Error [Access] <Private> When Using Uiimagepickercontroller

iOS 10 error [access] private when using UIImagePickerController

You may need to put the NSPhotoLibraryUsageDescription in your plist.
Like

<key>NSPhotoLibraryUsageDescription</key>
<string>$(PRODUCT_NAME) uses photos</string>

Check all the usage descriptions here.

Privacy violation for movies, but not for photos when using UIImagePickerController in iOS 10

You need to provide a NSMicrophoneUsageDescription key also.

iOS 10 - App crashes To access photo library or device camera via UIImagePickerController

In iOS 10. You have to set privacy Setting for Camera & Photo Library.

Camera :

Key       :  Privacy - Camera Usage Description   
Value : $(PRODUCT_NAME) camera use

Photo Library:

Key       :  Privacy - Photo Library Usage Description    
Value : $(PRODUCT_NAME) photo use

UIImagePickerController crashes on iOS10

I solved the crash by updating to the latest Xcode version.
The problem has been discussed here as well: https://github.com/Leanplum/Leanplum-iOS-SDK/issues/12

UIImagePickerController crashes on iOS10

I solved the crash by updating to the latest Xcode version.
The problem has been discussed here as well: https://github.com/Leanplum/Leanplum-iOS-SDK/issues/12



Related Topics



Leave a reply



Submit