views:

718

answers:

4

So all I wanna do is play a sound when the user touches a UIScrollView. The UIScrollViewDelegate has that scrollViewWillBeginDragging: method but it only gets called on touchMoved. I want it to get called on touchBegan.

Tried touchesBegan:withEvent: but it doesn't receive any touch. Anyone has a clue?

A: 

I think you will have to subclass UIScrollView to be able to do this.

touchesBegan:withEvent: is only sent to subclasses of UIView. You are problably implementing touchesBegan:withEvent: in your controller, right? If so, it won't work from there...

Alternatively, if you put a subclass of UIView (that you wrote) in your UIScrollView, you can also catch the touchesBegan event from there (but only when the user touches that particular subview). UIScrollView passes on touches to its subviews by default (see touchesShouldBegin:withEvent:inContentView: in UIScrollView).

Zoran Simic
A: 

You should add touchesBegan:withEvent: on your UIScrollView, not on the UIScrollViewDelegate. UIScrollView is a sub class of UIResponder, which has the touch events.

nash
+2  A: 

You can also respond to these events in your controller. For that to work, you have to define this feature (in your controller):

- (BOOL)canBecomeFirstResponder {
    return YES;
}

Then, in 'viewDidAppear', you need to call 'becomeFirstResponder':

- (void)viewDidAppear:(BOOL)animated {
    [super viewDidAppear:animated];
    [self becomeFirstResponder];
A: 

New updates on the issue here (including a link to ZoomScrollView source code + some excellent explanation on UIScrollView internals) . Also, check out Apple's updated ScrollViewSuite example.

DenTheMan