views:

44

answers:

1

Is it ok to override -handlePan: in a UIScrollView subclass? i.e. my app won't get rejected from the app store?

Thanks for sharing your views.

Edit: what about calling -handlePan: in another method of my subclass?

A: 

In case anyone is interested, what I did instead of overriding was disabling the default UIPanGestureRecognizer and adding another instance of UIPanGestureRecognizer which is mapped to my custom handler.

Altealice