iPhone NSMutableArray从网址加载背景图片

时间:2013-05-04 10:52:13

标签: iphone image url nsmutablearray

我有一个NSMutableArray,它将url存储到图像中。而这个NSMutableArray称为userPic。从我的服务器它只打印出url:不是JSON或任何东西,只有url。

我可以在Xcode的输出中看到它显示了url,但是如何将userPic中的这个url变为背景?我试图添加SubView与图像为背景。

如果有什么不清楚,抱歉。请告诉我。

1 个答案:

答案 0 :(得分:1)

请尝试使用这个。我认为你的URL在数组的索引0处。

NSURL *imgURL = [NSURL URLWithString:[userPic objectAtIndex:0]]; // put your particular index where your image url in your array...
NSData *imgData = [[NSData alloc]initWithContentsOfURL:imgURL];
UIImage *img = [UIImage imageWithData: imgData];

[newView setBackgroundColor:[UIColor colorWithPatternImage:img]]