UIButton状态更改时执行操作

时间:2012-04-01 20:31:29

标签: iphone ios uibutton uicontrolevents

我有一个UIButton,当它被触发时会执行一个Action。 我这样做

[inButton addTarget:self action:@selector(cardTouchDown) forControlEvents:UIControlEventTouchDown];

现在我想在按钮离开此状态时执行另一个操作。有什么建议怎么做?

2 个答案:

答案 0 :(得分:5)

使用another event - 例如UIControlEventTouchUpInside

[inButton addTarget:self action:@selector(cardTouchUp) forControlEvents:UIControlEventTouchUpInside];

答案 1 :(得分:0)

你的意思是UIControlEventTouchUpInside

您可以找到所有UIControll Everts Here(参见常量)