Can I hide the rewind button in the iOS Lock Screen Music controls?

后端 未结 3 1560
闹比i
闹比i 2021-02-08 08:26

My app doesn’t support going back to previous tracks, and I’m wondering if I can tell the lock screen music controls to hide their rewind/previous track button. I use the

3条回答
  •  春和景丽
    2021-02-08 08:54

    I found if I did not set the nowPlayingInfo n MPNowPlayingInfoCenter then the changes I was trying to make away from the default lock screen player did not register. Be sure you are setting MPNowPlayingInfoCenter.defaultCenter().nowPlayingInfo at some point like below:

     var songInfo: NSMutableDictionary = [
            MPMediaItemPropertyTitle: "song title",
            MPMediaItemPropertyArtist: "artiest ",
        ]
        MPNowPlayingInfoCenter.defaultCenter().nowPlayingInfo = songInfo as [NSObject : AnyObject]
    

提交回复
热议问题