可能重复:
How to display the current project version of my App to the user?
有没有办法检查我的应用的版本号?一旦应用程序进入App Store,它是否在某处提供?
答案 0 :(得分:142)
我相信这包含在您的info.plist文件中,可以使用以下代码检索:
[NSString stringWithFormat:@"Version %@",[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"]];