在项目>下项目文件夹设置>主要设置可以定义版本号。
如何在iOS应用程序中获取运行时的版本号?
我尝试了在Mono / MonoDevelop: Get solution version at runtime中发布的解决方案,但我只得到0.0.0.0,尽管它应该是0.1。我知道您可以使用CFBundleVersion
和CFBundleShortVersionString
,但是这个字段使用的是什么?
答案 0 :(得分:3)
NSBundle.MainBundle.InfoDictionary [new NSString ("CFBundleShortVersionString")].ToString ();
NSBundle.MainBundle.InfoDictionary [new NSString ("CFBundleVersion")].ToString ();