5
UIImagePickerControllerを使用する場合のiOS 10エラー[アクセス] <プライベート>
XCode 8を使用していて、iOS 10.2 Betaでテストしています。 Photos、PhotosUI、MobileCoreServicesフレームワークをプロジェクトに追加しました。 非常に単純なコード: #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 と実装: - (IBAction)grab:(UIButton *)sender{ UIImagePickerController *picker = [[UIImagePickerController alloc]init]; picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary; picker.allowsEditing = NO; picker.delegate = self; // make sure we include Live …