ios问题bug收录——1
Posted 世界仔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios问题bug收录——1相关的知识,希望对你有一定的参考价值。
**[2713:59682] *** Assertion failure in -[MBProgressHUD show:], /Users/lu/Desktop/****/Pods/MBProgressHUD/MBProgressHUD.m:248
**[2713:59682] *** Terminating app due to uncaught exception ‘NSInternalInconsistencyException‘, reason: ‘MBProgressHUD needs to be accessed on the main thread.‘
‘MBProgressHUD needs to be accessed on the main thread.‘这个错误主要翻译成,MBProgressHUD必须在主线程上运行。
而我是与js交互之后back回去的。。可见webView加载完毕,与js交互占用的不是主线程????
解决办法 :
dispatch_async(dispatch_get_main_queue(), {
self.navigationController!.popViewControllerAnimated(true)
})
以上是关于ios问题bug收录——1的主要内容,如果未能解决你的问题,请参考以下文章