首页 > 代码库 > iOS获取APP的版本号

iOS获取APP的版本号

技术分享


如上图,iOS有2个版本号,Version和Build,在target->General中可查看。

 Version在plist文件中的key是“CFBundleShortVersionString”,和AppStore上的版本号保持一致,Build在plist中的key是“CFBundleVersion”,代表build的版本号,该值每次build之后都应该增加1。这两个值都可以在程序中通过下面的代码获得:

[[[NSBundlemainBundle] infoDictionary]valueForKey:@"key"]

具体的获取Version代码:

NSString * versionKey = [[NSBundlemainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"];


具体获取Build号代码:

NSString * versionKey = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleVersion"];


iOS获取APP的版本号