有很多人在设置plist文件的时候, 会发现读取不了plist文件里面的内容, 返回值为nil, 下面我们来解决一下这个问题.
首先我们打开工程并且按照下面的步骤来设置:
设置好后, 我们来写一段代码测试一下看看是否添加好:
- NSBundle *bundle = [NSBundle mainBundle];
- NSString *path = [bundle pathForResource:@"images" ofType:@"plist"];
- _imageData = [NSMutableArray arrayWithContentsOfFile:path];
- NSLog(@"%@", _imageData);
读取后的数据图: