iOS获取当前版本号 Bundle Id等信息的方法

                       iOS中经常会遇到获取版本信息之类的问题,整理一小部分,如下:

1:获取bundle Id信息:[[NSBundle mainBundle]bundleIdentifier];

2:获取版本号:[[[NSBundle mainBundle]infoDictionary] objectForKey:@"CFBundleVersion"];

3: 获取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

建议将以上的字段都尝试打印一遍,这样应该会有个好的了解

你可能感兴趣的:(iOS开发总结)