我正在解析一个xml文件(包含图片的网址),从标记中获取网址并将其添加到NSMutableArray上!
我正在使用EGOPhotoViewer,所有照片网址都需要此代码:
EGOPhoto *photo1 = [[EGOPhoto alloc] initWithImageURL:[NSURL URLWithString:@"http://a3.twimg.com/profile_images/66601193/cactus.jpg"] name:@" laksd;lkas;dlkaslkd ;a"];
在我的NSMutableArray中,重复一下,我只有网址。
我该怎么办? 谢谢!
(当然,问题是我不知道我有多少张照片,所以我不知道我需要制作多少变量EGOPhoto!)
答案 0 :(得分:0)
使用for循环:
for (NSString *imgURL in aMutableArrayInstance) {
EGOPhoto *photo1 = [[EGOPhoto alloc] initWithImageURL:[NSURL URLWithString:imgURL] name:@"WhateverNameYouWant"];
// Do whatever awesome stuff you need to do with photo1
[photo1 release];
}