检查正在使用的应用程序版本

时间:2011-05-28 21:10:29

标签: objective-c cocoa-touch ios version-numbering

  

可能重复:
  How to display the current project version of my App to the user?

有没有办法检查我的应用的版本号?一旦应用程序进入App Store,它是否在某处提供?

1 个答案:

答案 0 :(得分:142)

我相信这包含在您的info.plist文件中,可以使用以下代码检索:

[NSString stringWithFormat:@"Version %@",[[NSBundle mainBundle] objectForInfoDictionaryKey:@"CFBundleShortVersionString"]];