システムサウンドを再生しています...
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);
これが問題かどうかはわかりませんが、「分析」で実行すると、潜在的なリークとして表示されます。シミュレーターで何度もアプリを実行すると、アプリの速度が低下するにつれて、明らかに何らかのリークが発生しています。アークを使用せずにこれに対処する方法の例を見つけましたが、何も使用しません。どんな提案でも大歓迎です。