巴扎黑2017-04-18 09:41:47
UIWebview的frame的高度要根据内部的html来变化吗?
我的做法一般是,可以先让webview加载html,然后控制器成为webview的delegate,
在 webViewDidLoad 方法里面,通过js获取webview加载后的高度,然后可以重新刷新页面,这时候给webView设置的frame.size.height 就可以等于你之前通过js获得的高度
_webViewHeight = [[webView stringByEvaluatingJavaScriptFromString:@"document.body.offsetHeight"] floatValue];