我只是在 iOS7中得到了这个错误,并且应用程序崩溃了。 在 iOS6中,我从来没有得到任何错误,只有一次内存警告时打开相机。
Snapshotting a view that has not been rendered results in an empty snapshot. Ensure your view has been rendered at least once before snapshotting or snapshot after screen updates.
这就是我要做的。
imagePicker = [[UIImagePickerController alloc] init];
[imagePicker setDelegate:self];
[imagePicker setSourceType:UIImagePickerControllerSourceTypeCamera];
[imagePicker setAllowsEditing:YES];
[self presentModalViewController:imagePicker animated:YES];
我的确试图延迟 presentModalViewController
,但我仍然得到相同的信息。几秒钟后(7-10秒) ,应用程序崩溃。
这个错误只出现在 iOS7中。
有人有线索吗?