IOS获取当前版本号 Bundle ID等信息的方法详解
程序员文章站
2024-03-31 10:39:52
ios获取当前版本号 bundle id等信息的方法
1:获取bundle id信息:[[nsbundle mainbundle]bundleidentifi...
ios获取当前版本号 bundle id等信息的方法
1:获取bundle id信息:[[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 = "6.0"; cfbundleinfoplisturl cfbundlename cfbundlepackagetype cfbundleshortversionstring cfbundlesignature cfbundlesupportedplatforms
感谢阅读,希望能帮助到大家,谢谢大家对本站的 支持!
上一篇: Java线程代码的实现方法
下一篇: 理解Android中的自定义属性