WKWebView 那些坑【來(lái)自騰訊Bugly】:
https://mp.weixin.qq.com/s/rhYKLIbXOsUJC_n6dt9UfA
附:帶有html標(biāo)簽的字符串 適配圖片罕容、視頻(重寫返回的html標(biāo)簽樣式):
/**
* 帶有html標(biāo)簽的字符串 適配圖片筒狠、視頻
*/
// 需要的寬度
CGFloat newWidth = kScreenWidth - 20;
// 樣式重寫
NSString *newHtmlString = [NSString stringWithFormat:@"<style>img,video{width:%fpx;height:auto; padding:0px; display:block;}</style>%@", newWidth, oldHtmlString];
// 加載適配后的html標(biāo)簽
[self.webView loadHTMLString: newHtmlString baseURL:[NSURL URLWithString:MAIN_URL]];