访问项目中资源包里面所有资源使用方法。读取资源包descs.plist文件方法如下:
NSBundle *bundle = [NSBundle mainBundle]; //创建bundle对象NSString *path = [bundle pathForResource:@“descs” ofType:@“plist”]; //获取资源在机器安装后的系统路径
NSArray *allDescs = [NSArray arrayWithContentsofFile:path]; //根据路径访问plist文件中的数组类
NSBundle 读取资源包中的文件,布布扣,bubuko.com
时间: 2024-12-23 09:46:08