在webview中原生与H5交互时使用到原生调用相机或者相册时
[self presentViewController:picker animated:YES completion:nil];
出现:
accessing _cachedSystemAnimationFence requires the main thread
异常崩溃。
解决方法比较简单:
dispatch_async(dispatch_get_main_queue(),^{
[self.navigationController presentViewController:alertVC animated:true completion:nil];
});
将
presentViewController
方法放到主线程中。
版权声明:本文为qq_26968911原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。