我在我的應用程序上有按鈕,並有一個短暫的聲音效果,當用戶點擊按鈕,短暫的聲音播放,但如果有人聽音樂,音樂將停止!我該如何處理?播放音樂和我的效果,我使用AudioToolbox框架。 我讀過蘋果文檔不適用於AVFoundation.framework!由於某些原因,我無法更改我的代碼!有什麼辦法systemSoundID?播放短音後iPod音樂將停止播放!
-(void)soundType{
NSString *path = [NSString stringWithFormat:@"%@%@",[[NSBundle mainBundle] resourcePath], @"/type.wav"];
SystemSoundID soundID;
NSURL *filePath = [NSURL fileURLWithPath:path isDirectory:NO];
AudioServicesCreateSystemSoundID((CFURLRef)filePath, &soundID);
AudioServicesPlaySystemSound(soundID);
}
很棒:)謝謝。 – Momi 2010-08-25 11:30:11