在我的应用程序中,我检查设备是否运行低于 iOS 5.0 并将主视图添加到窗口,如下所示:
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)问世时这会起作用吗?