3

iOS7 にアップグレードしたときに、アプリケーションからフォト ライブラリにアクセスすると、アプリケーションに空のビュー コントローラが表示されます。古いフレームワークで動作していました。

 UIImagePickerController *imagePickerController = [[UIImagePickerController alloc] init];
    imagePickerController.modalPresentationStyle = UIModalPresentationCurrentContext;
    imagePickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
    imagePickerController.delegate = self;
    self.imagePicker = imagePickerController;
    //self.imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
    [self presentViewController:self.imagePicker animated:YES completion:nil];
4

1 に答える 1

0

このコードを直接適用してください

UIImagePickerController *imagePickerController = [[UIImagePickerController alloc] init];
imagePickerController.modalPresentationStyle = UIModalPresentationCurrentContext;
imagePickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
imagePickerController.delegate = self;
[self presentViewController:imagePickerController animated:YES completion:nil];

このコードを実行すると、「アプリケーション」「写真にアクセスしたい」というメッセージが表示され、[OK] をクリックするとすべての画像が表示されます

ありがとう。

于 2014-02-10T12:36:45.403 に答える