播放網絡音頻並沒有那麼難,網上查了寫資料。代碼很簡單。
1.第一步 定義全局變量
@property(nonatomic,strong)AVPlayer *player;
2.第二部 懶加載初始化
- (AVPlayer *)player {
if (_player == nil) {
_player = [[AVPlayer alloc] init];
_player.volume = 1.0; // 默認最大音量
}
return _player;
}
3.第三步 創建要播放的資源 記得打開手機的聲音 被這坑了一上午
_player = [[AVPlayer alloc]initWithURL:[NSURL URLWithString:model.url]];
[_player play];
4.有個音頻播放完畢後的通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(endVoicePlay) name:@"StopVoicePlay" object:nil];
【關於iOS播放網絡音頻】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!