如何访问超级视图控制器?

时间:2009-06-23 17:52:23

标签: cocoa-touch uiview uiviewcontroller

我遇到了问题,我会尝试解释这个问题:

  1. 我有一个主UIViewController(整个屏幕)
  2. 我有一个辅助UIViewController(setbounds)
  3. 我使用以下内容将我的辅助视图添加到mainView

    [mainController.view addSubview:secondaryController.view];   
    
  4. 我创建了第三个控制器:modalController,我将它添加到我的辅助控制器中,如下所示:

    [secondaryController presentModalViewController:modalController animated:YES];
    
  5. 我根据modelController内的一些事件制作微积分。

  6. 我可以使用以下内容从modalControllersecondaryController发送消息:

    [[self parentViewController]  performSelector : @selector(myMethodInSecondaryController:) withObject : myObject afterDelay : .5];
    

    注意:“自我”对应modalController

  7. 我需要将“myObject”传递给mainController,但我无法从mainController引用我的secondaryController。我试过这个:

    [[self parentViewController] performSelector : @selector(myMethodInMainController:) withObject:myObject afterDelay : .5];
    

    注意:“self”对应secondaryController

    但它不起作用,我可以使用self.view.superview

    访问我的mainController视图

    注意:“自我”是我的secondaryController

  8. 但对其控制器没有。

1 个答案:

答案 0 :(得分:32)

在辅助控制器中,尝试

id mainViewController = [self.view.superview nextResponder];

并检查这是否是您正在寻找的视图控制器。

Apple的-[UIResponder nextResponder]文档:

  

UIView通过返回管理它的UIViewController对象(如果有的话)或超级视图(如果没有)来实现此方法