I have a UIButton that performs an Action when it is touched down. I do this with
[inButton addTarget:self action:@selector(cardTouchDown) forControlEvents:UIControlEventTouchDown];
Now I want to perform another action when the button leaves this state. Any advices how to do this?