标签:
//加载网络路径的内容
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:s.cover]];
cell.imageView.image = [UIImage imageWithData:data];
UIViewController *vc = [[UIViewController alloc]init];
UIWebView *wv = [[UIWebView alloc]initWithFrame:vc.view.bounds];
//让wv加载电影播放页面
// 1创建加载请求
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:s.detail_url]];
[wv loadRequest:request];
[vc.view addSubview:wv];
标签:
原文地址:http://www.cnblogs.com/stuyingiOS/p/4825568.html