Is there any way to tap into the touch events associated with a scrollView?
I realize that actually scrolling scrollViews is pretty much handled automagically, once set up. And I appreciate that. I also know that I can get touch events on objects that I place inside the scrollView, but what if I just want to get the position in the scroller where the user is touching when they drag to scroll the view? Would I have to make a rect that covers the entire scrollView and check for touch events? Or is the place the user touched stored in the event info somewhere already?
Sorry for the newbie question; I just don’t want to unnecessarily add another element if that information already exists somewhere (which it seems like it must for the automatic handling of the scrolling motion itself).