从 URL 读取字符串,然后将其图像加载到 UIImageView 中

发布于 2024-09-25 14:11:16 字数 552 浏览 4 评论 0原文

我有以下代码,可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

场罚期间 2024-10-02 14:11:16

使用:

NSData *imageData = 
   [[NSData alloc] initWithContentsOfUrl:
       [NSString 
           stringWithContentsOfUrl: 
             [NSURL URLWithString:@"http://mydomain.com"]
           encoding: NSUTF8StringEncoding
           error: nil
       ]
   ];

然后按照您已经做的那样继续。

UIImage* image = [[UIImage alloc] initWithData:imageData];
[marcaBackground setImage:image];
[imageData release];
[image release];

Use:

NSData *imageData = 
   [[NSData alloc] initWithContentsOfUrl:
       [NSString 
           stringWithContentsOfUrl: 
             [NSURL URLWithString:@"http://mydomain.com"]
           encoding: NSUTF8StringEncoding
           error: nil
       ]
   ];

Then proceed as you were already doing.

UIImage* image = [[UIImage alloc] initWithData:imageData];
[marcaBackground setImage:image];
[imageData release];
[image release];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文