1
AVAudioPlayer * myExampleSound;如何播放音樂,以便在結束後自動播放音樂?
NSString *myExamplePath = [[NSBundle mainBundle] pathForResource:@"myaudiofile" ofType:@"caf"];
myExampleSound =[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:myExamplePath] error:NULL];
myExampleSound.delegate = self;
[myExampleSound play];
如何播放myExampleSound,使其在結束後自動重播? 我正在使用上面的代碼。
請人幫忙。