I've got a UIScrollView. It's a narrow horizontal strip with a number of buttons. I want the user to be able to scroll the view, as well as tap the buttons.
------------------------
| |
| button 1 button2 | (and button 3,4 etc) outside the frame
| |
------------------------
However, during user testing an issue has arisen. The user will put their finger on the area where a button is, and then attempt to scroll. Because they held their finger momentarily down on the button, the touch never goes thru to the scroll view.
How would I let the touches go down to the scroll view if the user starts to slide left or right with their finger? But still allow taps on the buttons?
delaysContentTouchesproperty of yourUIScrollView? – dasblinkenlight Jul 5 '12 at 9:23