获取当前版本号 、bundleID等信息的方法
作者:
希达like | 来源:发表于
2018-01-02 16:16 被阅读0次
1.获取bundleID:
[[NSBundle mainBundle] bundleIdentifier];
2.获取版本号:
[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"];
3.获取build号:
[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"];
4.获取App显示名称:
[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleDisplayName"];
其实[[NSBundle mainBundle] infoDictionary]获得的是一个字典,里面放着info.plist文件中的各种信息,根据不同的键去取即可,如:CFBundleDevelopmentRegion、CFBundleDisplayName、CFBundleExecutable、CFBundleExecutablePath、CFBundleIdentifier、CFBundleInfoDictionaryVersion、CFBundleInfoPlistURL、 CFBundleName、CFBundlePackageType、CFBundleShortVersionString、CFBundleSignature、CFBundleSupportedPlatforms
本文标题:获取当前版本号 、bundleID等信息的方法
本文链接:https://www.haomeiwen.com/subject/qrqqnxtx.html
网友评论