0

我正在获取 JSON 中的图像 url 列表。现在我需要一一解析图像 url 并将其转换为数组并将其EGOImage添加到数组中,以便使用该图像执行动画。现在我得到的错误是图像nil不能添加到数组中。

注意:图片网址没有问题。

我的 JSON 结构是

{
 "images":[
               {
                 "url":"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRQmkaIO86rYB-DctBruyv4lFTEM-v_pGG9k5i0lrAr2Elzibvuiw"
               },
               {
                  "url":"https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQGh1nRGgnbUZXgKLMKGdeT320PGttnLmbN4R-DxmckQpjVDhHS"
               }
          ]
}

我的代码:

NSMutableArray*arrForImageURL = [dic objectForKey:@"images"];
arrForUniqueWorderImages=[[NSMutableArray alloc]init];
for (NSDictionary*dictForImg in arrForImageURL)
{
   NSString*stringForImageURL=[dictForImg objectForKey:@"url"];
   imgView.imageURL=[NSURL URLWithString:stringForImageURL];
   [arrForUniqueWorderImages addObject:(EGOImageView*)imgView.image];
}
4

1 回答 1

0

您正在尝试将 EGOImageviews 存储在数组中,为此您必须先正确初始化它。试试这个

NSMutableArray*arrForImageURL = [dic objectForKey:@"images"];
arrForUniqueWorderImages=[[NSMutableArray alloc]init];
for (NSDictionary*dictForImg in arrForImageURL)
{
   EGOImageView *imageView = [[EGOImageView alloc] init];

   imageView.contentMode=UIViewContentModeScaleAspectFit;
   NSString*urlString=[dictForImg objectForKey:@"url"];
   NSURL *imageUrl=[NSURL URLWithString:urlString];
   imageView.imageURL =imageUrl;
   imageView.frame=CGRectMake(0,0,320,300);
   [arrForUniqueWorderImages addObject:imageView];
}
于 2013-06-19T12:36:07.203 回答