webView加载html

2017-10-28  本文已影响0人  seven_less
_webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, SCREEN_WIDTH, HEIGHT(1))];
           self.tableView.tableFooterView = _webView;
        _webView.delegate = self;
        [_webView setUserInteractionEnabled:NO];
        _webView.scrollView.bounces = NO;
        _webView.scrollView.scrollEnabled = NO;
        NSString *htmls = [NSString stringWithFormat:@"<html> \n"
                           "<head> \n"
                           "<style type=\"text/css\"> \n"
                           "body {font-size:15px;}\n"
                           "</style> \n"
                           "</head> \n"
                           "<body>"
                           "<script type='text/javascript'>"
                           "window.onload = function(){\n"
                           "var $img = document.getElementsByTagName('img');\n"
                           "for(var p in  $img){\n"
                           " $img[p].style.width = '100%%';\n"
                           "$img[p].style.height ='auto'\n"
                           "}\n"
                           "}"
                           "</script>%@"
                           "</body>"
                           "</html>",response[@"data"][@"intro"]];
        [_webView loadHTMLString:htmls baseURL:nil];

//代理方法

上一篇 下一篇

猜你喜欢

热点阅读