I have a view with which you can do finger drawing. It’s currently in UIScrollView. Although it can draw, it is very buggy because while I am drawing, the ScrollView scrolls up and down, so how can I make the scroll view stop scrolling if the touch is inside that view?
Thanks.
Here’s why I need scroll view, it bunch of contents and at the end, users sign in the customview.
If you don’t want to use the scrollView for scrolling, why are you using it?
It sounds like you should remove it and subclass UIView. Can you give some more info on what you’re trying to do with UIScrollView?
OK, I understand. You could turn OFF the scrollingEnabled property when there’s a touch in the signature box and turn it back on when the person is done signing.
I think that would be the most natural thing way to do this.