reason:accessing _cachedSystemAnimationFence requires the main thread 需要访问主线程

js调用原生的方法的时候报错

1.iOS 查看具体报什么异常用try catch

2.捕获打印出来的异常是报错代码需要在主线程执行

3.将报错的代码放到主线程中执行。

dispatch_async(dispatch_get_main_queue(), ^{

//报错代码

};

你可能感兴趣的:(reason:accessing _cachedSystemAnimationFence requires the main thread 需要访问主线程)