1

我正在关注 iTunes 上很棒的斯坦福 cs193p 课程,现在我正在参加第 7 课和第 3 课。

我只是想让 SplitViewController 在 iPad 上正常工作......但看起来我的 UISplitViewControllerDelegate 委托方法在设备方向发生变化时没有被调用。

这是我到目前为止得到的:

-我创建了一个全新的 iPad 故事板,添加了一个 SplitViewController,其中一个 UIViewController 作为 Master(CalculatorViewController),另一个 UIViewController 作为 Detail(GraphViewController)。我认为我做的一切都是正确的。

-我的 GraphViewController.h 实现了 UISplitViewControllerDelegate 协议:

@interface GraphViewController : UIViewController <UISplitViewControllerDelegate>

-My GraphViewController.m 将 SplitViewController 委托设置为自身:

- (void)awakeFromNib {
    [super awakeFromNib];
    self.splitViewController.delegate = self;
}

-My GraphViewController.m 实现了必要的方法:

// asks the delegate whether the first view controller should be hidden for the specified orientation
- (BOOL)splitViewController:(UISplitViewController *)svc 
   shouldHideViewController:(UIViewController *)vc 
              inOrientation:(UIInterfaceOrientation)orientation
{
    // only show the master controller in landscape mode
    return UIInterfaceOrientationIsPortrait(orientation);
}

// tells the delegate that the specified view controller is about to be hidden (must add a popover button)
- (void)splitViewController:(UISplitViewController *)svc 
     willHideViewController:(UIViewController *)aViewController 
          withBarButtonItem:(UIBarButtonItem *)barButtonItem 
       forPopoverController:(UIPopoverController *)pc
{
    barButtonItem.title = aViewController.title;

    // add the button to the toolbar
    NSMutableArray *toolbarItems = [self.toolbar.items mutableCopy];
    [toolbarItems insertObject:barButtonItem atIndex:0];
    self.toolbar.items = toolbarItems; 
}

// tells the delegate that the specified view controller is about to be shown again (must remove popover button)
- (void) splitViewController:(UISplitViewController *)svc 
      willShowViewController:(UIViewController *)aViewController 
   invalidatingBarButtonItem:(UIBarButtonItem *)barButtonItem
{    
    // hide the bar button item on the detail controller
    NSMutableArray *toolbarItems = [self.toolbar.items mutableCopy];
    [toolbarItems removeObject:barButtonItem];
    self.toolbar.items = toolbarItems;
}

-My GraphViewController.m 支持所有方向:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
    return YES; // support all types of orientation
}

现在,当我运行应用程序(Snow Leopard 上的 Xcode 4.2、iOS 5.0、iPad Simulator 5.0)时,调用 splitViewController:willHideViewController:withBarButtonItem:forPopoverController: 方法,我的主视图被隐藏,并且在我的详细视图中显示一个按钮在 PopOver 中显示主视图(因为我处于纵向模式)。

但是,当我更改设备的方向(到横向模式......仍在使用模拟器)时,没有任何反应,上述方法都不会再次被调用。我最终仍然隐藏了主视图并且仍然显示了 PopOver 按钮,而事实上,我希望显示主视图并隐藏 PopOver 按钮。

我究竟做错了什么?这是我的代码、Xcode 和模拟器的问题吗?

4

1 回答 1

1

问题解决了!

以防它可能对其他人有所帮助,这就是我忘记做的事情。

在我的 CalculatorViewController(SplitViewController Master)中,我必须允许 iPad 的方向更改为横向,但 iPhone 不允许:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
    if (self.splitViewController) return YES; 
    else return UIInterfaceOrientationIsPortrait(toInterfaceOrientation);
}

我为 GraphViewController(SplitViewController 详细信息)做了它,但忘记为 CalculatorViewController 做它......我的错!

于 2013-01-10T16:30:35.687 回答