IPC の使用方法は次のとおりです。
ipc = nil; // reset (camera may be running)
ipc = [[UIImagePickerController alloc] init];
[ipc setDelegate:self];
ipc.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentViewController:ipc animated:YES completion:^(void){
[self cancelShoot];
}];
iOS 6 の 3GS でも問題なく動作します。また、iOS 7 シミュレーターでも問題はありません。iOS 7 デバイス (iPod 5 世代、iPhone 4、iPhone 5) でテストしている間、常にクラッシュします。
最新の OS について知っておくべき新しいことはありますか?