答案 0 :(得分:0)
我不确定你的属性列表的结构是什么,但我只是猜测它只是一个属性列表,其中一个字符串包含每行的图像名称。管理它的最简单方法是将plist文件转储到这样的数组中:
// Load the data
NSString *pathToFile = [[NSBundle mainBundle] pathForResource:someArrayNameString ofType:@"plist"];
self.someArrayYouCreated = [NSArray arrayWithContentsOfFile:pathToFile];
然后您可以像这样访问数组中的数据:
// load it into some string you created
nextImageNameString = [someArrayYouCreated objectAtIndex:nextImageNumberHere];
然后您可以使用该字符串名称作为下一个要加载的图像。所以基本上,
objectAtIndex
访问图像(请记住,数组从索引0开始)