所以我一直把头发拉出来。我不能为我的生活找出如何在SPTAudioStreamingController
上启用随机播放或重复播放。我该怎么做?我能找到的就是:
let player = SPTAudioStreamingController.sharedInstance()
player.playbackState.isShuffling = true
player.playbackState.isRepeating = true
不幸的是,这些只是获取。制定者在哪里?
答案 0 :(得分:0)
在测试版25中,您可以使用 SPTAudioStreamingController
类中的方法 setShuffle// get current state
let state = player.playbackState.isShuffling
// set shuffle state to opposite state
player.setShuffle(!state, callback: nil)