但是当我在我的应用程序中播放音乐时,用户无法做到.滑块未激活:
如何在我的应用中启用这些功能?
解决方法 您可以借助iOS 9.1及更高版本上的MPRemoteCommandCenter更改曲目位置.if (floor(NSFoundationVersionNumber) > NSFoundationVersionNumber_iOS_9_0) { MPRemoteCommandCenter *commandCenter = [MPRemoteCommandCenter sharedCommandCenter]; [commandCenter.changePlaybackpositionCommand setEnabled:true]; [commandCenter.changePlaybackpositionCommand addTarget:self action:@selector(changedThumbSlIDerOnLockScreen:)]; }
和方法
- (MPRemoteCommandHandlerStatus)changedThumbSlIDerOnLockScreen:(MPChangePlaybackpositionCommandEvent *)event{ // change position [self setCurrentPlaybackTime:event.positionTime]; // update MPNowPlayingInfoPropertyElapsedplaybackTime [[MPNowPlayingInfoCenter defaultCenter] setNowPlayingInfo:songInfo]; return MPRemoteCommandHandlerStatusSuccess;}总结
以上是内存溢出为你收集整理的ios – 如何更改锁定屏幕/控制中心的轨道位置?全部内容,希望文章能够帮你解决ios – 如何更改锁定屏幕/控制中心的轨道位置?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)