获取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的信息的代码的主要内容,如果未能解决你的问题,请参考以下文章