I have a UIButton subview inside of a UITableViewCell.
UIButton
UITableViewCell
When this button is touched, the user must hold the button for about a half second f
I just change the image from within the target action method:
[sender setBackgroundImage:[UIImage imageNamed:@"highlighted-image.png"] forState:UIControlStateNormal];
It changes the background image instantly.