I’m playing a system sound using...
NSString *path = [NSString stringWithFormat:@"%@%@",
[[NSBundle mainBundle] resourcePath],
@"/heartbeat.wav"];
//declare a system sound id
SystemSoundID soundID4;
//Get a URL for the sound file
NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO];
//Use audio sevices to create the sound
AudioServicesCreateSystemSoundID((__bridge_retained CFURLRef)filePath, &soundID4);
//Use audio services to play the sound
AudioServicesPlaySystemSound(soundID4);
AudioServicesDisposeSystemSoundID(soundID4);
I’m not sure that this is the problem.. but if it run with “analyze” it comes up as a potential leak. There is clearly some kind of leak going on as the app gets slower and slower as I run it more times in the simulator. I have found examples for how to deal with this without using arc, but nothing with. Any suggestions would be greatly appreciated.