首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

加载远道图片到 View

2012-09-19 
加载远程图片到 ViewNSURL *url[NSURL URLWithString:@http://..../Icons/icon.ico]NSData *data[NSD

加载远程图片到 View

NSURL *url=[NSURL URLWithString:@"http://..../Icons/icon.ico"];
NSData *data=[NSData dataWithContentsOfURL:url];
UIImage *tmpimage=[[UIImage alloc] initWithData:data];

UIImageView *imageview =[[UIImageView alloc] initWithFrame:CGRectMake(100, 100, 100, 100)];
imageview.image=tmpimage;
[self.view addSubview:imageview];

热点排行