xamarin.ios – Monotouch:CheckVersion中的5.1.0 Beta API更改

xamarin.ios – Monotouch:CheckVersion中的5.1.0 Beta API更改,第1张

概述在MonoTouch的Beta 5.1中,用于检查版本的API已更改,它现在返回一个int. UIDevice.CurrentDevice.CheckSystemVersion(5,0,0); 我无法找出int的含义.之前它是一个布尔. 这是一个错误,它在5.1 release notes中被注意到: This is a temporary regression in the Beta, it w 在Monotouch的Beta 5.1中,用于检查版本的API已更改,它现在返回一个int.

UIDevice.CurrentDevice.CheckSystemVersion(5,0);

我无法找出int的含义.之前它是一个布尔.

解决方法 这是一个错误,它在5.1 release notes中被注意到:

This is a temporary regression in the Beta,it will be reverted back to the 5.0 signature on the next release.

int版本背后的想法是使代码能够执行以下 *** 作:

if (CheckSystemVersion (5,1) >= 0) { // set backup bit }
总结

以上是内存溢出为你收集整理的xamarin.ios – Monotouch:CheckVersion中的5.1.0 Beta API更改全部内容,希望文章能够帮你解决xamarin.ios – Monotouch:CheckVersion中的5.1.0 Beta API更改所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1034500.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-24
下一篇 2022-05-24

发表评论

登录后才能评论

评论列表(0条)

保存