我正在使用UIWebView加载我的HTML字符串
NSMutableString * str;
str = [NSMutableString new];
[str appendString:@"<html><head><title>HO</title></head><body>"];
[str appendString:content];
[str appendString:@"</body></html>"];
[webView loadHTMLString:str baseURL:nil];
以前工作正常,但是当我更新到iOS 10时,它不再加载了。
有谁知道为什么会这样?
答案 0 :(得分:2)
感谢您的回复,
我只是解决了我的问题。
在webviewdidfinishload中,
webViewHeight = [[webView stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight"] floatValue];
我将document.height更改为document.body.scrollHeight。
答案 1 :(得分:0)
我测试过,你的代码在iOS 10.2上运行良好。请检查content
或发布样本。