Hey guys
I was wondering if you could help me with my issue below.
When I press the buttons often, after 200-250 times pressing the buttons, the buttons don't sound anymore. I can continue pressing the buttons, but no sound appears. But the application doesn't break down, i can continue using my application fine, but only the sound doesn't sound anymore, so I have to restart the application and after the restart everything works fine again, till I pressed the sound-buttons 200-250 times and the game begins again. I can't figure out the problem.
If you could help, that would be great.
I was wondering if you could help me with my issue below.
Code:
- (IBAction)playsound1 {
NSString *path = [[NSBundle mainBundle] pathForResource:@"song" ofType:@"wav"];
AVAudioPlayer* theAudio=[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath: path] error:NULL];
[theAudio play];
}
If you could help, that would be great.