The Problem: When a user taps on a UIButton in a UITableViewCell, the button will only highlight on a long tap, not on a quick tap. The desired behaviour for this button to highlight regardless of the tap duration.
Unfortunately: Setting delaysContentTouches to NO on any UIScrollView or UITableView is not an option because of other undesired side effects.
So: How can I get around this - is there a way to forward touches to the button, bypassing the delaysContentTouches value?