以下是我如何使用我的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 gen,iPhone 4,iPhone 5)上进行测试时,它总是崩溃。
我应该注意最新的操作系统有什么新内容吗?
答案 0 :(得分:0)
“ipc”是指针吗?鉴于你如何设置sourceType,它看起来不是..