摘要:
wkwebview 1.隐藏顶部标题栏 [webView evaluateJavaScript:@"document.getElementsByClassName('page-header')[0].style.display='none'" completionHandler:nil]; 2. 修 阅读全文
2017年9月12日
2017年7月3日
摘要:
1.首先测试端口号是否被占用,如果端口号被占用,修改相对应文件的端口号,修改端口号的方法网上很容易搜到。 2.如果端口号没有被占用,cd到httpd.exe目录下,查看错误原因,这里我显示的错误是httpd.conf的62行地址或域名无效,打开httpd.conf的62行,把最后面的#删掉,保存就好 阅读全文
2017年6月21日
摘要:
首先在终端输入 lsof -i :8080 (8080是端口号) 找到进程之后 在终端杀死进程 kill -9 7934 重新运行 阅读全文
2017年4月20日
摘要:
在iOS和html混编的时候,当用iOS原生的navigation导航pop回去的时候,出现 *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'An instance 阅读全文
2017年4月11日
摘要:
*** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: '-[__NSCFDictionary setObject:forKey:]: mutating method sent 阅读全文
2017年4月5日
2017年3月24日
摘要:
wkwebview方法如下: [webView evaluateJavaScript:@"navigator.userAgent" completionHandler:^(id result, NSError *error) { NSString *string=result; NSLog(@"re 阅读全文
2017年2月13日
摘要:
新手上路,刚刚自学html,仅作为记录学习历程用,有需要的可以参考。 1.边距相同时 <table align="center" cellpadding="15rem" style="color: #6C6C6C;font-size: 8pt;"> 这行代码完全可以做到,但是左右边距和上下边距不一样 阅读全文