0

如何使用此层次结构访问 ViewController 中的 presentViewController 方法?

UIViewController -> UITableView -> UITableViewCustomCell -> UIButton

UIButton 触发foofoo在 UITableViewCustomCell 里面

- (void)foo
{
    TWNumericKeyboardController *vc =
       (TWNumericKeyboardController *) [mainStoryboard instantiateViewControllerWithIdentifier:@"NumericKeyboard"];
}

从这里,我需要到达我的 ViewController,以便我可以调用 presentViewController。我怎样才能做到这一点?

谢谢!!

4

1 回答 1

0

我建议将按钮的操作方法放在需要进行演示的控制器中。根据您当前的设计,现在设置这可能需要一些工作,但我认为它会在未来的可理解性和灵活性方面得到回报。

于 2013-07-21T03:10:17.203 回答