reloadData 为 UITableView 和 UIWebView 时闪烁
你好!我正在使用 UITableView 和 UITableViewCell。 UITableViewCell 内部有一个 UIWebView (因为我正在使用实体、粗体文本等)。
webview 加载了以下代码:
UIWebView *testoLabel2 = (UIWebView*)[cell viewWithTag:3];
NSString *html = [NSString stringWithFormat:@"<html><font size=2>%@</font></body></html>", sottotitolo];
testoLabel2.opaque = NO;
testoLabel2.backgroundColor = [UIColor clearColor];
[testoLabel2 loadHTMLString:html baseURL:nil];
有什么问题吗? 重新加载数据时(例如在更改 deviceOrientation 之后)
[my_table reloadData];
当我需要使用所有 webView ! 虽然只有一秒钟,但他们却眨眼了!而且效果非常难看!
你知道为什么吗? 谢谢!
编辑:如果我向下滚动表格视图,当我向上滚动之前加载的网络视图时,它是白色的!但只是一会儿,在他们加载文本之后!
Hi! I'm working with an UITableView, with UITableViewCell.
The UITableViewCell has inside an UIWebView (because i'm using entities, bold text, ecc...).
The webview is loaded with this code:
UIWebView *testoLabel2 = (UIWebView*)[cell viewWithTag:3];
NSString *html = [NSString stringWithFormat:@"<html><font size=2>%@</font></body></html>", sottotitolo];
testoLabel2.opaque = NO;
testoLabel2.backgroundColor = [UIColor clearColor];
[testoLabel2 loadHTMLString:html baseURL:nil];
What's the problem?
That when i need to reload the data (for example after the change of the deviceOrientation) using
[my_table reloadData];
all the webView blink!
For just a second, but they blink! And it's a very ugly effect!
Do you know why?
Thanks!
EDIT: also if i scroll down the tableview, when i scroll up the webview that before were loaded are white! But just for a moment, after they load the text!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定具体原因,但将单元格中的所有视图背景设置为纯色是一个很好的做法。 Flash 可以是渲染其背景的单元格,然后是其上方的网络视图。如果您将 webview 背景设置为您想要的颜色并使其保持不透明,那么这种情况就不会发生。祝你好运!
Not sure exactly why but it's good practice to set all view backgrounds in cells to a solid solid color. The flash could be the cell rendering it's background and then the web view on top of it. If you set the webview background to your desired color and leave it opaque then this shouldn't happen. Good luck!