plist 如何遍历读取 数组 字典

2020-09-07 科技 56阅读
// 获取 info.plist 配置文件对应的 字典对象
NSDictionary *info = [NSBundle mainBundle].infoDictionary;
// 取出 CFBundleURLTypes 对应的 对象(数组)
NSArray *urlTypes = info[@"CFBundleURLTypes"];
// 遍历数组内容
for (NSDictionary *dict in urlTypes) {
// 取出子对象中 key CFBundleURLSchemes 对应的 的 字典对象(还是个数组)
// 具体的数据类型在info.plist 配置文件中可以看出,然后逐类型取出即可找到自己想要拿到那个 值
NSArray *schemes = dict[@"CFBundleURLSchemes"];
NSString *scheme = schemes[0];
... ...
}
声明:你问我答网所有作品(图文、音视频)均由用户自行上传分享,仅供网友学习交流。若您的权利被侵害,请联系fangmu6661024@163.com