使用 AVAudioPlayer 声音小,没声音

来源:互联网 发布:淘宝包包长尾词 编辑:程序博客网 时间:2024/06/11 19:34


废话不说, 直接代码搞起 !!!!!!!

 [[AVAudioSessionsharedInstance] setCategory:AVAudioSessionCategoryPlaybackerror:nil];

    self.player = [[AVAudioPlayeralloc]initWithContentsOfURL:[NSURLfileURLWithPath:self.filePath]error:nil];

    self.player.volume=1;

    [self.playerplay];


0 0