0

我的文件中有以下代码

NSString *filePath = [[NSBundle mainBundle]pathForResource:@"images" ofType:@"plist"];
                NSArray *array = [[NSArray alloc]initWithContentsOfFile:filePath];


                for (id dict in array) {


                    NSLog(@"This is the id: %@" ,[dict objectForKey:@"Id"]);

                }

当我在调试器上运行它时,它会在 NSString *filePath 行上返回“invalid CfStringref”。

无论我尝试什么代码,我都无法通过这个。

有任何想法吗?

plist 也是一个字典数组,但我无法解析它们,因为代码不起作用

4

1 回答 1

1

images.plist 不在您的“复制捆绑资源”构建阶段,将其拖入并再次运行。

于 2012-04-19T22:58:53.583 回答