我UIWebView
用来在里面加载 Youtube 视频UITableView
。一切正常,除了每次滚动表格视图时都会加载。我已经阅读了这个问题(UITableView 中的 UIWebView 每次滚动时都会重新加载。如何防止它重新加载?)但尚未解决。
我的代码:
NSString *videoUrl =[NSString stringWithFormat:@"src=\"http://www.youtube.com/embed/%@\"", videoId];
NSString *htmlString =[NSString stringWithFormat:@"<iframe width=\"273\" height=\"152\" %@ frameborder=\"0\" allowfullscreen></iframe>", videoUrl];
NSLog(@"%@", htmlString);
cell.myWebview.scrollView.scrollEnabled = NO;
cell.myWebview.scrollView.bounces = NO;
[cell.myWebview loadHTMLString:htmlString baseURL:[NSURL URLWithString:@"http://www.youtube.com"]];
[cell.contentView addSubview:cell.myWebview];