2011-04-23 60 views
1

可能重複:
repeat playing automatically如何讓我的音樂循環(重複)

我怎麼能循環的聲音(我的背景音樂)

這裏是我的代碼:

NSString *path = [[NSBundle mainBundle] pathForResource:@"MathMusic" ofType:@"aif"]; 
    AVAudioPlayer* theAudio= [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL]; 
    theAudio.delegate = self; 
[theAudio play]; 

我該怎麼做如果我循環播放,它會繼續播放下一個(或另一個)視圖嗎?

+0

是您瞭解iOS或MacOS的問題嗎?請添加相應的標籤。而且,你的問題似乎與開發環境XCode沒有任何關係。所以請刪除該標籤。 – Codo 2011-04-23 12:50:43

+0

這個應用程序正在爲iOS開發 – MCKapur 2011-04-23 12:51:59

+0

所以請修復標籤! – Codo 2011-04-23 12:53:29

回答

7

嘗試使用AVAudioPlayer並將numberOfLoops屬性設置爲-1(無限)。