Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to make a button play a sound upon touching the button. I can get the sound to play with the Touch Up Inside option but that's not what I'm looking for because the sound only plays after the button is released.

I've tried to use touchesBegan to play the sound upon touching the button but it doesn't seem to work. Any ideas why?

Thanks

My code:

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch *touch = [[event allTouches] anyObject];
[super touchesBegan:touches withEvent:event];
    if([touch view] == doneButton) {


NSString *path = [[NSBundle mainBundle] pathForResource:@"click" ofType:@"caf"];
AVAudioPlayer* clickAudio=[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];

clickAudio.delegate=self;
[clickAudio play];

    }

}

share|improve this question
are you yring to do like a piano app? and when the user holds it down, the sound continues to play – Sam Jarman Jan 17 '10 at 2:12
you know, you could use a UIButton, and do something else other than touch up inside, perhaps, like 'Touch Down' – Sam Jarman Jan 17 '10 at 2:13
Touch Down works but I don't want the button to trigger my modalview until the button is lifted. No, I'm not doing a piano app, lol... Too many of those out there. This is just for my preference. – 0SX Jan 17 '10 at 2:53
1  
So why not play the sound on touch down and trigger the modal view on touch up? – Jeff Kelley Jan 17 '10 at 4:14

1 Answer

up vote 1 down vote accepted

Use a UIButton. Call -play on touch down and call -stop on touch up.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.