2019-03-21 获取plist文件里的内容

/** 获取plist文件里的内容(可以扩充)*/

+ (NSString *)plistContentWithName:(NSString *)name {

    NSDictionary *infoDictionary = [[NSBundle mainBundle] infoDictionary];

    // name: CFBundleDisplayName(app 名称) CFBundleShortVersionString(APP版本) CFBundleVersion(app build版本)

    // app名称

    NSString *str = [infoDictionary objectForKey:name];

    returnstr;

}


扩充方法:


打开可以看到对应的key

你可能感兴趣的:(2019-03-21 获取plist文件里的内容)