Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to play button tap sound from various UIButton instances.

I'm planning to create a singleton to hold "SystemSoundID" of sound files that will be shared across many buttons.

Will this work? (SystemSoundID won't change during app's lifetime?)
Is there a other recommended way of doing this?

Thank you

share|improve this question
Use audio file in app delegate class and you can you your audio file through out whole app. – singhSan Jun 3 '11 at 11:17

1 Answer

up vote 0 down vote accepted

I would suggest you to sub-class UIButton and override its any of the touch event (as you want) and play sound.... by this way you don't have to worry about playing sound each time, which will be the case even you put the code in 'appdelegate'

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.