欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

IOS获取当前版本号 Bundle ID等信息的方法详解

程序员文章站 2023-12-22 09:15:09
 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

 感谢阅读,希望能帮助到大家,谢谢大家对本站的 支持!

上一篇:

下一篇: