我无情地搜索,但没有运气。
我只是想在我的表视图(didSelectRowAtIndexPath)中播放流音频文件(mp3),但它们在 xcode 中没有错误,但 mp3 不会播放
这是一个片段
NSString *urlstr = @"www.nosajsolomon.com/pull_up_to_mi_bumper.mp3";
NSURL *url = [NSURL URLWithString:urlstr];
AVPlayerItem *playerItem2 = [AVPlayerItem playerItemWithURL:url];
player = [AVPlayer playerWithPlayerItem:playerItem2];
[player play];
player.actionAtItemEnd = AVPlayerActionAtItemEndNone;
知道我做错了什么吗?