iOS 10 error [access] when using UIImage

2020-01-25 12:48发布

I am using XCode 8 and testing with iOS 10.2 Beta.

I have added the Photos, PhotosUI and MobileCoreServices frameworks to project.

Very simple code:

#import <Photos/Photos.h>
#import <PhotosUI/PhotosUI.h>
#import <MobileCoreServices/MobileCoreServices.h>

@interface ViewController : UIViewController <UIImagePickerControllerDelegate, UINavigationControllerDelegate, PHLivePhotoViewDelegate>

@property (strong, nonatomic) IBOutlet UIImageView *imageview;

@end

and implementation:

- (IBAction)grab:(UIButton *)sender{
    UIImagePickerController *picker = [[UIImagePickerController alloc]init];
    picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
    picker.allowsEditing = NO;
    picker.delegate = self;

    // make sure we include Live Photos (otherwise we'll only get UIImages)
    NSArray *mediaTypes = @[(NSString *)kUTTypeImage, (NSString *)kUTTypeLivePhoto];
    picker.mediaTypes = mediaTypes;

    // bring up the picker
    [self presentViewController:picker animated:YES completion:nil];
}

As soon as I tap the button, the app crashes with very useless error:

[access] <private>

That's it. Nothing else.

Using break statements, the app seems to crash at "presentViewController".

This is a brand new app and I don't have anything else in the UI other than the grab button.

Also, testing on iOS 9.3, this works fine. Am I missing something which might be changed in iOS 10?

5条回答
成全新的幸福
2楼-- · 2020-01-25 13:29

In iOS10, Before you access privacy-sensitive data like Camera, Contacts, and so on, you must ask for the authorization, or your app will crash when you access them.Then Xcode will log like:

This app has crashed because it attempted to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSContactsUsageDescription key with a string value explaining to the user how the app uses this data.

How to deal with this?

Open the file in your project named info.plist, right click it, opening as Source Code, paste this code below to it. Or you can open info.plist as Property List by default, click the add button, Xcode will give you the suggest completions while typing Privacy - with the help of keyboard ⬆️ and ⬇️.

Remember to write your description why you ask for this authorization, between <string> and </string>, or your app will be rejected by apple:

<!--                                                                     
查看更多
三岁会撩人
3楼-- · 2020-01-25 13:34

You need the add the new privacy settings to you info.plist.

Don't forget to add the value describing why the app need to access the service.

enter image description here

查看更多
孤傲高冷的网名
4楼-- · 2020-01-25 13:37

in iOS 10 you need to add the key mentioned in below image if you are using camera or photo gallery in your app

.plist image

查看更多
Anthone
5楼-- · 2020-01-25 13:39

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.

查看更多
Emotional °昔
6楼-- · 2020-01-25 13:50

In iOS 10, Apple has changed how you can access any user private data types.

You need to add the Privacy - Photo Library Usage Description key to your app’s Info.plist and their usage information.

For more information please find the below GIF.

GIF

Or if you want to add via info.plist then you need to add NSPhotoLibraryUsageDescription key.

Just copy and paste below string in info.plist.

<key>NSPhotoLibraryUsageDescription</key>
<string>Take the photo</string>

Please find the below GIF for more information.

GIF

查看更多
登录 后发表回答