UIScrollview Terminate Active Touches When Disabled
I have implemented a "pull to refresh" feature inside a UIScrollView
Once the user scrolls past -50 then it disables the view for the refresh to happen. That works fine the only issue is that if they never take their finger off the screen they can still scroll since it only disables future touches.
Is there a way that I can terminate active touches on an object.
I am using [self.view setUserInteractionEnabled:NO]; to disable user interaction after they have gone past a certain point.
|