OStack程序员社区-中国程序员成长平台

标题: ios - UISplitview 方向在 iOS 5 和 iOS 5.1 中没有改变 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-12 23:50
标题: ios - UISplitview 方向在 iOS 5 和 iOS 5.1 中没有改变

我在我的应用程序中使用了 Split View。
当我在 iOS 6 模拟器中运行我的应用程序时,它会随着方向的变化而旋转并且运行良好,但是当我在 iOS 5 或 iOS 5.1 模拟器中运行相同的应用程序并且我改变模拟器的方向但 Split View不会随着方向的变化而变化。
我也加了代码

- (BOOL)shouldAutorotateToInterfaceOrientationUIInterfaceOrientation)interfaceOrientation
{
    return (interfaceOrientation == UIInterfaceOrientationPortrait || interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown || interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight);
}

-(BOOL)shouldAutorotate
{
    return YES;
}

我使用以下代码添加 Split View - (BOOL)shouldAutorotateToInterfaceOrientationUIInterfaceOrientation)interfaceOrientation { 返回是; }

主视图和详细 View 中的上述方法。

我使用以下代码添加了 Split View

if(UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
{
     // obj_PageControlViewController = [[PageControlViewController alloc]initWithNibName"ageControlViewController-iPad" bundle:nil];

     MasterViewController *masterViewController = [[MasterViewController alloc] initWithNibName"MasterViewController_iPad" bundle:nil];
     UINavigationController *masterNavigationController = [[UINavigationController alloc] initWithRootViewController:masterViewController];

     DetailViewController *detailViewController = [[DetailViewController alloc] initWithNibName"DetailViewController_iPad" bundle:nil];
     UINavigationController *detailNavigationController = [[UINavigationController alloc] initWithRootViewController:detailViewController];

     masterViewController.detailViewController = detailViewController;

     self.splitViewController = [[UISplitViewController alloc] init];
     self.splitViewController.delegate = detailViewController;
     self.splitViewController.viewControllers = @[masterNavigationController, detailNavigationController];
     TabBarAppDelegate *appDelegate = (TabBarAppDelegate *)[[UIApplication sharedApplication] delegate];
     [appDelegate.window setRootViewController:self.splitViewController];

}

但它不起作用。任何人都可以帮助我吗?



Best Answer-推荐答案


你说你添加了 shouldAutorotateToInterfaceOrientation: 但你没有说 在哪里 你添加了它。要在 iOS 5.1 或更早版本中自动旋转 UISplitViewController,您必须在 Split View Controller 的 两个 subview Controller 的 View Controller 中提供 shouldAutorotateToInterfaceOrientation:(主视图 Controller 和详细 View Controller )。

假设 Split View Controller 是您的应用程序的顶级(根) View Controller ,这将起作用,由 Master-Detail 模板设置。

哦,省点麻烦:在 shouldAutorotateToInterfaceOrientation: 中,只返回 YES。在 iPad 上,您总是希望自动旋转。

关于ios - UISplitview 方向在 iOS 5 和 iOS 5.1 中没有改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13506469/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4