iOS 代码中获取info.plist文件对应的字典对象

    // 获取 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];
        ... ...
    }



你可能感兴趣的:(ios,info.plist)