加载html的时候,用weibiew加载,如果CSS文件里边用到了这个属性:
-webkit-overflow-scrolling: touch(这个属性是实现弹性的滑动,类似scrollview的bounces效果);加载的时候,会提示这个错误,如果你不打全局断点,程序是不会崩溃的,如果有,就会崩溃.
解决办法:
1----如果能去掉html里边的这个属性,就去掉
2----如果不能去掉,其实也没什么,真机运行也没什么问题的,不影响大局
3----如果你支持的最低版本是iOS8,那么你可以用WKWebView来代替UIWebView,WK没有这个问题
4----报错是说类没有实现这个方法,那么,我们可以自己实现一下,给UIWebView增加一个category,用runtime来给这个类添加这个方法实现
+ (void)load{
// "v@:"
Class class = NSClassFromString(@"WebActionDisablingCALayerDelegate");
class_addMethod(class, @selector(setBeingRemoved), setBeingRemoved, "v@:");
class_addMethod(class, @selector(willBeRemoved), willBeRemoved, "v@:");
class_addMethod(class, @selector(removeFromSuperview), willBeRemoved, "v@:");
}
id setBeingRemoved(id self, SEL selector, ...)
{
return nil;
}
id willBeRemoved(id self, SEL selector, ...)
{
return nil;
}