如何使用此层次结构访问 ViewController 中的 presentViewController 方法?
UIViewController -> UITableView -> UITableViewCustomCell -> UIButton
UIButton 触发foo,foo在 UITableViewCustomCell 里面
- (void)foo
{
TWNumericKeyboardController *vc =
(TWNumericKeyboardController *) [mainStoryboard instantiateViewControllerWithIdentifier:@"NumericKeyboard"];
}
从这里,我需要到达我的 ViewController,以便我可以调用 presentViewController。我怎样才能做到这一点?
谢谢!!