我正在努力调整包含动态高级WebView的UITableViewCell的高度。
- (void) viewDidLoad {
// ...
for (ListItem *item in self.items) {
UIWebView *webView = [[UIWebView alloc] initWithFrame:CGRectZero];
[webView loadHTMLString:item.content baseURL:nil];
[self.webViews addObject: webView]
}
// ...
self.tableView.delegate = self;
self.tableView.dataSource = self;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
// try to calculate height?
return 100.0;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
ListItem *listItem = (self.items) [indexPath.row];
[tableView registerNib:[UINib nibWithNibName:@"AccordionCell" bundle:nil] forCellReuseIdentifier:@"MyCustomCell"];
CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:@"MyCustomCell"];
// [...] do something with cell
UIWebView *webView = [self.webViews objectAtIndex: indexPath.row];
webView.frame = CGRectMake(0, 0, cell.mainView.frame.size.width, 0);
[cell.mainView addSubview: webView];
}
- (void)webViewDidFinishLoad:(UIWebView *)webView {
NSString *height = [webView stringByEvaluatingJavaScriptFromString:@"document.getElementById('mainframe').offsetHeight;"];
// [...] adjust height of web view by using the content's height
}
但是,由于多个线程webViewDidFinishLoad
总是在cellForRowAtIndexPath
之后被调用,并且尝试通过更改webViewDidFinishLoad
中的帧来调整单元格高度到目前为止没有成功。
答案 0 :(得分:0)
将方法webViewDidFinishLoad:
中的高度存储在NSMutableArray中,然后最后重新加载UITableView
的数据,并将heightForRowAtIndexPath
中的那些高度相应地用于indexPath.Row
。< / p>
答案 1 :(得分:0)
我不想误导您,但如果您需要将静态HTML内容打印到视图中,则可以使用UILabel和属性字符串。
就像那样:
NSMutableAttributedString *attributedString;
NSData *htmlData = [htmlString dataUsingEncoding:NSUTF8StringEncoding];
attributedString = [[NSMutableAttributedString alloc] initWithData:htmlData
options:@{NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType}
documentAttributes:nil
error:nil];
someLabel.attributedText = attributedString;
如果你使用它,你不需要等待WebView加载,你可以使用标准方法来计算高度。