-1

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

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

如果有什么不清楚的地方,很抱歉。让我知道。

4

1 回答 1

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]]
于 2013-05-04T11:25:52.073 回答