[1]概念
iOS的版本号号。一个叫做Version,一个叫做Build,这两个值都能够在Xcode 中选中target,点击“Summary”后看到。 Version在plist文件里的key是“CFBundleShortVersionString”。和AppStore上的版本号号保持一致,Build在plist中的key是“CFBundleVersion”,代表build的版本号号,该值每次构建版本号之后都应该添加1。这两个值都能够在程序中通过以下的代码获得:
[[[NSBundle mainBundle] infoDictionary] valueForKey:@"key"]
[2]详细实现
代码实现获得应用的Verison号:
[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleShortVersionString"]
或
[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"];
获得build号:
[[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleVersion"]