我有一个UIButton,当它被触发时会执行一个Action。 我这样做
[inButton addTarget:self action:@selector(cardTouchDown) forControlEvents:UIControlEventTouchDown];
现在我想在按钮离开此状态时执行另一个操作。有什么建议怎么做?
答案 0 :(得分:5)
使用another event - 例如UIControlEventTouchUpInside
[inButton addTarget:self action:@selector(cardTouchUp) forControlEvents:UIControlEventTouchUpInside];
答案 1 :(得分:0)
你的意思是UIControlEventTouchUpInside
?
您可以找到所有UIControll Everts Here(参见常量)