我使用带有loadHTMLString和basicURL的WKWebView。 我观察了" scrollView.contentSize"的变化。路径并执行下一个代码,因为内容大小正在改变:
if (textWebViewHeightConstraint.constant != textWebView.scrollView.contentSize.height) {
CGFloat newSize = textWebView.scrollView.contentSize.height;
if (!self.currentPromo.text || self.currentPromo.text.length == 0) {
newSize = 0.0;
}
[UIView animateWithDuration:kDefaultAnimationDuration animations:^{
textWebViewHeightConstraint.constant = newSize;
[self.view layoutIfNeeded];
}];
}
它的工作正确。 但我的html字符串有时会包含静态宽度和高度的大图像。
我在didFinishNavigation方法中修改图像大小:
[webView evaluateJavaScript:@"var images = document.getElementsByTagName('img');"
"for(var i = 0; i < images.length; i++) {"
"images[i].style.height = \"auto\";"
"images[i].style.maxWidth = window.innerWidth - kDefaultMargin * 2;"
"}" completionHandler:nil];
执行此JS代码后,内容高度发生了变化,但WKWebView未检测到此内容,并未更改内容大小。结果我在内容结束后在WKWebView中有一个很大的可用空间。
我该如何解决?
感谢。
答案 0 :(得分:2)
我解决了! 我不知道,为什么WKWebView的内容大小不会自动调整大小,但我们可以帮助他做到这一点。
如果您遇到与我相同的问题,您应该:
Delcare BOOL财产
@property(nonatomic, assign) BOOL isWebViewReloaded;
并在更新视图内容方法中设置为NO值
self.isWebViewReloaded = NO;
NSString *wrappedText = [self.currentPromo wrappedTextForWebViewForWith:self.textWebView.bounds.size.width andText:nil];
[self.textWebView loadHTMLString:wrappedText baseURL:[ApiClient shared].baseUrl];
我的包装方法将html和body标签添加到html字符串
-(NSString *)wrappedTextForWebViewForWith:(CGFloat)width andText:(NSString *)text {
if (!text) {
text = self.text;
}
return [NSString stringWithFormat:
@"<html>"
"<head>"
"<meta name=\"viewport\" content=\"initial-scale=1.0\" />"
"</head>"
"<body style=\"max-width:%fpx\">"
"%@"
"</body>"
"</html>", width, text];
}
在didStartProvisionalNavigation委托方法中你应该手动将内容大小设置为零。 非常重要,没有它的WKWebView就不会调整大小!
- (void)webView:(WKWebView *)webView didStartProvisionalNavigation:(null_unspecified WKNavigation *)navigation {
webView.scrollView.contentSize = CGSizeZero;
}
在didFinishNavigation委托方法中,您应修改已加载的文档并使用修改后的html重新加载WKWebView
- (void)webView:(WKWebView *)webView didFinishNavigation:(null_unspecified WKNavigation *)navigation {
[webView evaluateJavaScript:self.modifyImagesJS completionHandler:^(id _Nullable obj, NSError * _Nullable error) {
if (!self.isWebViewReloaded) {
//it is very big hack! See my question for details: https://stackoverflow.com/questions/44761656/wkwebview-not-changing-contentsize-after-modify-images-sizes-in-javascript
[webView evaluateJavaScript:@"document.body.innerHTML" completionHandler:^(id _Nullable str, NSError * _Nullable error) {
self.isWebViewReloaded = YES;
NSString *wrappedHTML = [self.currentPromo wrappedTextForWebViewForWith:self.textWebView.bounds.size.width andText:str];
[self.textWebView loadHTMLString:wrappedHTML baseURL:[ApiClient shared].baseUrl];
}];
}
}];
}
我的isWebViewReloaded脚本:
self.modifyImagesJS = [NSString stringWithFormat:@""
"var images = document.getElementsByTagName('img');"
"for(var i = 0; i < images.length; i++) {"
"images[i].removeAttribute(\"height\");"
"images[i].style.height = \"auto\";"
"images[i].style.maxWidth = window.innerWidth - %f * 2;" // %f * 2 - сompensate left and right margins
"}", kDefaultSmallBlocksMargins];
最后我使用KVO检测webview内容大小更改并修改webview高度约束
FBKVOController *kvo = self.KVOController;
[kvo observe:self.textWebView
keyPath:@"scrollView.contentSize"
options:NSKeyValueObservingOptionNew
block:^(id _Nullable observer, WKWebView * _Nonnull webView, NSDictionary<NSString *,id> * _Nonnull change) {
if (webView.constraints.firstObject.constant != webView.scrollView.contentSize.height) {
NSLog(@"new size is %f", webView.scrollView.contentSize.height);
CGFloat newSize = webView.scrollView.contentSize.height;
if (!_self.currentPromo.text || _self.currentPromo.text.length == 0) {
newSize = 0.0;
}
[UIView animateWithDuration:kDefaultAnimationDuration animations:^{
webView.constraints.firstObject.constant = newSize;
[_self.view layoutIfNeeded];
}];
}
}];
<强>宾果!!! 强>
原始html字符串:
... <img width="600" src="/upload/someName.png" height="2001">...
修改后的Html字符串
... <img width="600" src="/upload/someName.png" style="height: auto; max-width: 284px;"> ...
内容大小的变化
...[26964:10644727] new size is 2297.000000
...[26964:10644727] new size is 0.000000
...[26964:10644727] new size is 1243.000000