显而易见而浪费很多时间调试的错误
2016-11-18 本文已影响0人
fcai
1 设置颜色值在iOS 10 系统会一直显示白色。
[UIColor colorWithRed:255 green:255 blue:255 alpha:0.15];
正确的写法:
[UIColor colorWithRed:255/255.0f green:255/255.0f blue:255/255.0f alpha:0.15];
2 直接获取H5中图片的地址,不用js方法,通过点击的坐标获取。
CGPoint point = [sender locationInView:self.webView];
NSString *imageUrl = [NSString stringWithFormat:@"document.elementFromPoint(%f, %f).src", point.x, point.y];
NSLog(@"... %@ ", imageUrl);
NSString *urlToSave = [self.webView stringByEvaluatingJavaScriptFromString:imageUrl];
self.webViewImageUrl = urlToSave.stringByTrim;
if (urlToSave.length > 0) {
[self showImage];
}