cell 里面 加webView 多次加载 请求网络

1.本身webView 有Bug  如果 webView 正在加载 我们不需要再请求

if (!self.webView.isLoading || !(_webContent <= 0)) {

[self.webView loadData:data MIMEType:@"text/html" textEncodingName:@"utf-8" baseURL:url];

}

2. 当web 加载完成。并计算出高  不要刷新整个tableView ,只刷新单个。不然又要重新请求几次

NSIndexPath *ind=[NSIndexPath indexPathForRow:0 inSection:0];

[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:ind,nil] withRowAnimation:UITableViewRowAnimationNone];

你可能感兴趣的:(cell 里面 加webView 多次加载 请求网络)