我是 iphone 新手。我在这里开发音频播放器,我在中间感到震惊,因为我在项目中遇到了一些问题,我在资源文件夹中有 2 个目录。在每个目录中我有 6mp3 音频文件。所以我的问题是当用户在资源文件夹的第一个目录中提供第三首 mp3 歌曲的路径时,我们必须连续播放所有歌曲,如第 4、5、6 个 mp3files 也放置在资源文件夹的该目录中。这是我的代码为了这
NSString *chapterString =@"3";
NSString *string = [[NSBundle mainBundle]pathForResource:chapterString ofType:@"mp3" inDirectory:@"raj"];
NSLog(@"string is %@",string);
url = [NSURL fileURLWithPath:string isDirectory:YES];
NSError *error;
audioPlayer = [[AVAudioPlayer alloc]initWithContentsOfURL:url error:&error];
如果有人知道这一点,请帮助我..