从 URL 读取字符串,然后将其图像加载到 UIImageView 中
我有以下代码,可以在 UIImageView 上加载我想要从互联网获取的图像:
NSString* mapURL = @"http://mydomain.com/image-320x480.png";
NSData* imageData = [[NSData alloc]initWithContentsOfURL:url];
UIImage* image = [[UIImage alloc] initWithData:imageData];
[marcaBackground setImage:image];
[imageData release];
[image release];
我希望加载另一个 URL 的字符串,然后将该图像加载到 UIImageView 上,而不是对图像的 URL 进行硬编码。
我的 URL 仅返回另一个文本格式的 URL。
例如:http://mydomain.com/url
返回http://mydomain.com/image-320x480.png
我如何完成此任务?
I've got the following code that loads on an UIImageView the image that I want from the internet:
NSString* mapURL = @"http://mydomain.com/image-320x480.png";
NSData* imageData = [[NSData alloc]initWithContentsOfURL:url];
UIImage* image = [[UIImage alloc] initWithData:imageData];
[marcaBackground setImage:image];
[imageData release];
[image release];
I'd like instead of hardcoding the URL of the image, to load a string of another URL and then load that image on the UIImageView.
My URL returns just another URL in text format.
For example: http://mydomain.com/url
returns http://mydomain.com/image-320x480.png
How could I accomplish this task?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用:
然后按照您已经做的那样继续。
Use:
Then proceed as you were already doing.