【发布时间】:2017-03-21 15:16:21
【问题描述】:
【问题讨论】:
标签: ios objective-c avplayer
【问题讨论】:
标签: ios objective-c avplayer
MPRemoteCommandCenter 的方法和属性你有没有过一遍,相信你可以使用这里的命令来跳过前进或后退。 恐怕你不会得到类似 iTunes 音乐的流畅滑块,因为他们没有向开发者公开类似的东西。
要在锁定屏幕上设置曲目持续时间,您必须设置 MPMediaItemPropertyPlaybackDuration,如下所示::
MPNowPlayingInfoCenter *center = [MPNowPlayingInfoCenter defaultCenter];
NSDictionary *songInfo = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithDouble:songDuration],MPMediaItemPropertyPlaybackDuration,
nil];
[center setNowPlayingInfo:songInfo];
【讨论】: