views:

54

answers:

0

Hi all,

I have an UIView-derived class (MenuView) that handles touch events inside an UIScrollView. Small finger movements are properly captured by MenuView; sweeps are captured by the outer UIScrollView and translate into scrolling. The MenuView gets a [touchesCancelled] notification.

Apparently a decision is made within UIScrollView whether to pass the touch events down to the content or to process them as scrolling. Question - is there any way to adjust that behavior, increase the "small movement" threshold? I want a little more chance to handle those moves - my users are complaining that the view is too scroll-happy.