1

我正在尝试通过它自己的按钮调用连接到按钮的操作。这可以做到吗?为了澄清我的观点,我的意思是:

[self.button callIBAction:self] 
4

2 回答 2

4

您需要发送触发按钮的事件,例如:

[self.button sendActionsForControlEvents:UIControlEventTouchUpInside]

或者,如果您在实现该操作的同一视图控制器中:

[self callIBAction:self.button]
于 2013-11-01T16:07:55.953 回答
-1
[self performSelector:@selector(yourIBAction:) withObject:nil];
于 2018-09-21T16:18:18.133 回答