Hallo Ich benutze unter Code, um meine lokale mp3-Datei zu spielen. aber kein Fehler kam. aber mp3 spielt nicht.AVAudioPlayer Nicht Mp3-Datei abspielen Ich habe versucht Aber kein Glück
AVAudioPlayer *audioPlayer ;
NSString *sound_file;
if ((sound_file = [[NSBundle mainBundle] pathForResource:@"mpthreetest" ofType:@"mp3"])){
NSURL *url = [[NSURL alloc] initFileURLWithPath:sound_file];
audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:url error:NULL];
audioPlayer.delegate = self;
[audioPlayer prepareToPlay];
[audioPlayer play];
}
NSBundle hat eine Methode namens URLForResource –