c#-Monotouch:在5.0之前版本的设备中设置窗口
作者:互联网
在我的应用程序中,我检查设备运行是否低于iOS 5.0,然后将主视图添加到Window中,如下所示:
if (UIDevice.CurrentDevice.CheckSystemVersion(5, 0))
window.RootViewController = tabBarController;
else
window.AddSubview(tabBarController.View);
// make the window visible
window.MakeKeyAndVisible();
我的问题是:这真的需要吗?我可以一直这样做吗?
window.RootViewController = tabBarController;
后续问题:如果理论上iOS(大于5.x)问世,此方法是否可以工作?
解决方法:
如果您没有针对iOS 5.0的上述检查,则您的应用程序将在较旧的操作系统上崩溃.较旧的操作系统在UIWindow上没有RootViewController值.
具体来说,iOS 4及更高版本支持RootViewController,但iOS 5及更高版本需要此功能:http://developer.apple.com/library/ios/#DOCUMENTATION/UIKit/Reference/UIWindow_Class/UIWindowClassReference/UIWindowClassReference.html
由于CheckSystemVersion()确保您大于传入的值,因此该代码在iOS 6发行时仍然可以使用.
标签:xamarin-ios,mono,ios,c 来源: https://codeday.me/bug/20191201/2078110.html