今天新学的加载网页和加载网络地址图片
UIWebView*wv = [[UIWebViewalloc]initWithFrame:vc.view.bounds];
//让wv加载电影播放页面
// 1创建加载请求
发出请求
NSMutableURLRequest*request = [NSMutableURLRequestrequestWithURL:[NSURLURLWithString:s.detail_url]];
[wvloadRequest:request];
[vc.viewaddSubview:wv];
由网络地址添加图片
(网络地址:"cover":"http:\/\/p6.qhimg.com\/t012fb16b97e179f20e.jpg”,)
NSData*imageData=[NSDatadataWithContentsOfURL [NSURLURLWithString:self.m.cover]];
self.movieVIew.image=[UIImageimageWithData:imageData];
原文地址:http://10685945.blog.51cto.com/10675945/1696227