如何查看iOS版本
是否可以读取运行 MonoTouch 应用程序的 iOS 版本(4.2.1、4.3.3 等)?如果是这样,怎么办?
Is it possible to read the iOS version (4.2.1, 4.3.3, etc.) running a MonoTouch app? If so, how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试
UIDevice.CurrentDevice.SystemVersion
。Try
UIDevice.CurrentDevice.SystemVersion
.如果您只需要布尔条件,有一个方便的方法:
If you only need it for a boolean condition, there is a convenience method:
在 MonoTouch 中:
要获取主要版本,请使用:
对于次要版本,请使用:
In MonoTouch:
To get the Major version use:
For minor version use:
有一个 .net System.Version 类可以从字符串转换。
There is a .net System.Version class to convert from string.