获取info.plist的信息的代码

Posted PJXWang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取info.plist的信息的代码相关的知识,希望对你有一定的参考价值。

 NSString *CurPath = [[NSBundle mainBundle] bundlePath];

NSString *xmlPath = [CurPath stringByAppendingPathComponent:@"/Contents/Info.plist"];

NSMutableDictionary* dict = [[ NSMutableDictionary alloc ] initWithContentsOfFile:xmlPath];

NSString* Ver = [dict objectForKey:@"CFBundleShortVersionString"];

 

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

    [self.window setTitle:[info objectForKey:(NSString *)kCFBundleExecutableKey]];

以上是关于获取info.plist的信息的代码的主要内容,如果未能解决你的问题,请参考以下文章

获取info.plist的信息的代码

从 Info.plist 读取版本

本地化Info.plist权限Key

swift3.0怎么获取info.plist文件里的属性值

app info.plist

关于 Info.plist 中可以存储哪些信息的一些示例?