codeER.tec

ios如何在打印web(h5)端日志

2018-05-21  本文已影响18人  雷霆嘎巴嘎嘎
- (void)catchJsLog{
  if(DEBUG){
    JSContext *ctx = [self.webView valueForKeyPath:@"documentView.webView.mainFrame.javaScriptContext"];
    ctx[@"console"][@"log"] = ^(JSValue * msg) {
        NSLog(@"H5  log : %@", msg);
    };
    ctx[@"console"][@"warn"] = ^(JSValue * msg) {
        NSLog(@"H5  warn : %@", msg);
    };
    ctx[@"console"][@"error"] = ^(JSValue * msg) {
        NSLog(@"H5  error : %@", msg);
    };
}
}

放在viewdidload里加载即可,简单粗暴

上一篇下一篇

猜你喜欢

热点阅读