I’ve created a subclass of UIScrollView to implement a one of my custom controls, at this point everything is working great.
However what I’d like to be able to call a methods whenever a Touch Up Inside event is detected (just like interface builder) does anybody know how I could do this?
Because
UIScrollViewdoes not inherit fromUIControl, this is not possible. You can, however, relay the scroll view’s touch events by implementing theUIRespondermethods in your customUIScrollViewclass: