gpt4 book ai didi

ios - 如何从json解析图片URL

转载 作者:行者123 更新时间:2023-11-28 22:10:39 25 4
gpt4 key购买 nike

"weatherIconUrl": [
{
"value": "http://cdn.worldweatheronline.net/images/wsymbols01_png_64/wsymbol_0001_sunny.png"
}
],

这是我的 json 数据,我可以获取文本类型的数据,但我无法从 weatherIconUrl 数组中获取图像 url

最佳答案

使用以下行代码获取键的值 @"value"

NSString * imgURLString = [[[myMaindictonary objectForKey:@"weatherIconUrl"] objectAtIndex:0] objectForKey:@"value"];

并将这个字符串转换成URL

NSURL *myURL = [NSURL URLWithString:[imgURLString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];

你也可以从这个网址获取图片

UIImage *myImg = [UIImage imageWithData:[NSData dataWithContentsOfURL:myURL]];

关于ios - 如何从json解析图片URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23004502/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com