1

试图跳到队列中的下一个项目,但是当调用 applicationMusicPlayer.skipToNextItem() 时,队列中的位置没有改变,当前曲目只是重新开始。队列由字符串项 ID 数组组成。

   self.applicationMusicPlayer.setQueue(with: trackIDs)

这是用于跳到队列中下一项的代码

@IBAction func nextSong(_ sender: Any) {
         print("current Index in Queue: \(self.playlistManager.applicationMusicPlayer.indexOfNowPlayingItem)")
        self.playlistManager.applicationMusicPlayer.skipToNextItem()
        print("After skip: \(self.playlistManager.applicationMusicPlayer.indexOfNowPlayingItem)")
    }
4

0 回答 0