iOS:App在iOS8中与相机崩溃

时间:2015-08-07 01:20:00

标签: ios camera

我在iOS8中使用相机时遇到问题。我的应用程序的一部分允许用户从相机胶卷中选择图像或使用相机拍摄一张图像。如果用户从相机胶卷中选择图像,则应用程序将按预期运行。但如果用户拍照,我会在控制台中收到以下消息:

快照未呈现的视图会导致空快照。确保在屏幕更新后快照或快照之前,您的视图至少呈现过一次。

当我关闭相机时,它崩溃了以下内容:

[__ NSPlaceholderArray initWithObjects:count:]:尝试从对象[0]'

插入nil对象

我已经看到这可能是iOS8在线搜索的问题。任何人都可以建议任何解决方案吗?

1 个答案:

答案 0 :(得分:0)

I've look it up for you. One of the most likely solution is to set the modalPresentationStyle as below:

self.modalPresentationStyle = UIModalPresentationOverCurrentContext;

It would help if you post some of your code presenting the UIImagePickerController :]

And you may want to check this question.