I'm using UIWebView to load my HTML string,
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];
It works fine before, but when I update to iOS 10, it didn't load anymore.
Does anyone know why it happened?