如何创建Url Iphone SDK数组

时间:2012-09-17 13:15:41

标签: iphone arrays sdk

您好我想知道我该如何做到这一点:

我有这个...

networkImages = [[NSArray alloc] initWithObjects:@"http:www.mydomain.com/photo.png", @"http:www.mydomain.com/photo2.png", @"http:www.mydomain.com/photo3.png", @"http:www.mydomain.com/photo4.png" ,nil];

我想知道我是否可以做到这一点..

NSArray * photo;    
networkImages = [[NSArray alloc] initWithObjects: photo, nil];

我下载了使用JSON解析我们的Web服务器上的照片数组。 我试试这个,但我有错误

  

由于未捕获的异常而终止应用   'NSInvalidArgumentException',原因:' - [__ NSArrayI length]:   无法识别的选择器发送到实例0x383940'

sory for my english!

1 个答案:

答案 0 :(得分:0)

如果你想在数组中只有一个数组.. 试试这个

NSArray * photo;    
networkImages = [NSArray arrayWithArray: photo];