美文网首页
webView加载html

webView加载html

作者: seven_less | 来源:发表于2017-10-28 16:10 被阅读0次
    _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];
    

    //代理方法

    • (void)webViewDidFinishLoad:(UIWebView *)theWebView
      {
      if ([[theWebView stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight"] floatValue] != 0) {
      webViewHeight = [[theWebView stringByEvaluatingJavaScriptFromString:@"document.body.scrollHeight"] floatValue];
      CGRect newFrame = _webView.frame;
      newFrame.size.height = webViewHeight;
      _webView.frame = newFrame;
      [self.tableView setTableFooterView:theWebView];
      }
      }

    相关文章

      网友评论

          本文标题:webView加载html

          本文链接:https://www.haomeiwen.com/subject/tyjspxtx.html