The How to Play a Short Sound tutorial was great. Followed it step by step and got quick little app up and running in no time.
I'm still really new at this though and trying to figure out how to make a button inside the App play the sound as opposed to just pressing anywhere on the screen. I added a Round Rect button in Interface Builder, added an Outlet outlet in Mainview (catButton) and linked it to the button itself.
- (void)touchesBegan

NSSet *)touches withEvent

UIEvent *)event {
[soundEffect play];
I'm assuming its somewhere in here that I change to make the sound play when the button is pressed instead of the background, but I'm stumped.
Any ideas?