在iOS 8中,我有从相机捕捉图像的问题,直到现在我正在使用这段代码

UIImagePickerController *controller=[[UIImagePickerController alloc] init];
controller.videoQuality=UIImagePickerControllerQualityTypeMedium;
controller.delegate=(id)self;
controller.sourceType=UIImagePickerControllerSourceTypeCamera;
[self presentViewController:controller animated:YES completion:nil];

但在iOS 8中,我得到了这个:

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.

我已经尝试了本文提供的解决方案

@property (strong,nonatomic)UIImagePickerController *controller;

_controller=[[UIImagePickerController alloc] init];
_controller.videoQuality=UIImagePickerControllerQualityTypeMedium;
_controller.delegate=(id)self;
_controller.sourceType=UIImagePickerControllerSourceTypeCamera;
_[self presentViewController:controller animated:YES completion:nil];

...
controller.modalPresentationStyle=UIModalPresentationFullScreen;
or
controller.modalPresentationStyle=UIModalPresentationCurrentContext;
...

double delayInSeconds = 0.1;
dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, delayInSeconds * NSEC_PER_SEC);
dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
    [self presentViewController:controller animated:YES completion:nil];
});

[self presentViewController:controller animated:YES completion:NULL];

[self presentViewController:controller animated:YES completion:^{

}];

任何想法?


当前回答

我有这个问题时,动画一些视图和应用程序会进入背景模式,然后回来。我通过设置标志isActive来处理它。我把它设置为NO in

- (void)applicationWillResignActive:(UIApplication *)application

和YES

- (void)applicationDidBecomeActive:(UIApplication *)application

并相应地激活或不激活我的观点。解决了这个问题。

其他回答

我使用Phonegap,但这个线程一直作为第一个当谷歌关于错误消息。

对我来说,通过将imagetype定义为PNG,这个问题就消失了。

encodingType : Camera.EncodingType.PNG

所以整条线是:

 navigator.camera.getPicture(successFunction, failFunction, { encodingType : Camera.EncodingType.PNG, correctOrientation:true, sourceType : Camera.PictureSourceType    .PHOTOLIBRARY, quality: 70, allowEdit : false , destinationType: Camera.DestinationType.DATA_URL});

你的里程可能会有所不同,但这对我来说很管用。

我得到了同样的错误,在控制台怒吼的消息,同时打开相机。

’对一个没有被渲染的视图进行快照会导致一个空快照。确保你的视图在快照之前或屏幕更新后至少渲染过一次。”

对我来说,问题是在信息中的捆绑显示名称。plist文件。它是空的某种方式,我把我的应用程序名称在那里,现在它工作正常。我没有收到任何相机权限警报,因为空的Bundle显示名称。它阻止了视图的呈现。

问题不在于视图,而在于未经许可而呈现视图。你可以检查设置>隐私>相机,如果你的应用程序没有列出,问题可能是一样的。

这可能是内置ImagePickerController的错误。我的代码可以运行,但在iPhone 6 Plus上偶尔会崩溃。

我已经尝试了其他答案提出的所有解决方案,但都没有运气。问题最终解决后切换到JPSImagePickerController。

我在调用UIImagePickerController presentViewController后遇到了这个:从回调到UIAlertView委托。我通过推presentViewController解决了这个问题:使用dispatch_async调用当前执行跟踪。

- (void)alertView:(UIAlertView *)alertView didDismissWithButtonIndex:(NSInteger)buttonIndex
{
    dispatch_async(dispatch_get_main_queue(), ^{
        UIImagePickerController *imagePickerController = [[UIImagePickerController alloc] init];
        imagePickerController.delegate = self;

        if (buttonIndex == 1)
            imagePickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
        else
            imagePickerController.sourceType = UIImagePickerControllerSourceTypeCamera;

        [self presentViewController: imagePickerController
                           animated: YES
                         completion: nil];
    });
}

如果我们使用UIImagePickerController作为属性,那么这个警告将会消失。xcode假设我们没有使用UIImagePickerController的结果,如果我们在一个函数中实例化UIImagePickerController。