0
我有一個AVAudioPlayer與MP3文件。但是在演奏之前,你會聽到一個麻煩。 這是我的代碼:AVAudioPlayer掛在玩之前
NSString *geluid = [NSString stringWithFormat:@"RG_%@", nummer];
NSString *path = [[NSBundle mainBundle] pathForResource:geluid ofType:@"mp3"];
AVAudioPlayer* theAudio=[[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
theAudio.delegate=self;
[theAudio prepareToPlay];
[theAudio play];
NSURL *url = [NSURL fileURLWithPath:path];
avplayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:nil];
[avplayer prepareToPlay];
[avplayer play];
例如:你聽到「Ssstop這裏」,在代替關「到此爲止」。 請幫我解決它。