UIImagePickerController:忽略拍照请求;相机尚未准备好
我在我的应用程序中使用相机。
我想3秒后自动拍照。 对于一种情况,代码工作绝对正常。
如果应用程序在相机滴答声以任何方式进行时进入后台,例如如果中间有呼叫或用户按主页键...那么当应用程序恢复时它不会继续相机勾选,并在控制台中给出此警告
UIImagePickerController:忽略拍照请求;相机尚未准备好。
发生这种情况时我想重新启动相机 我应该怎么办?
I am using camera in my application.
I want to take picture after 3 seconds automatically.
The code is working absolutely fine accept for one case..
If application goes into background while camera tick is going on by any ways like if call comes in-between or user presses home key...then when the application is resumed it does not continue the camera tick and in console it gives this warning
UIImagePickerController: ignoring request to take picture; camera is not yet ready.
I want to restart the camera when such thing happens
what should i do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们可以使用这些应用程序委托函数
we can use these app delegate functions
我为解决这个问题做了什么:
What i did to solve this issue: