0

我在一个 UIViewController 中有一个 IBAction 按钮,我想在另一个 UIViewController 中执行一个操作。我该怎么做呢?

4

1 回答 1

1

在第二个 UIViewController 中声明一个方法并从第一个控制器中的 IBAction 调用。

像这样的东西:

-(IBAction)myMethodFromFirstController{

SecondController *secondController = [[SecondController alloc] init];
[secondController method];

}

于 2012-10-06T20:27:28.873 回答