UIButton touch is delayed when in UIScrollView

Jeff’s solution wasn’t quite working for me, but this similar one does: http://charlesharley.com/2013/programming/uibutton-in-uitableviewcell-has-no-highlight-state In addition to overriding touchesShouldCancelInContentView in your scroll view subclass, you still need to set delaysContentTouches to false. Lastly, you need to return true rather than false for your buttons. Here’s a modified example from the above link. As commenters suggested, it … Read more