我有这个代码:
[self.musicPlayer stop];
[self.musicPlayer setQueueWithQuery:persistentQuery];
[self.musicPlayer play];
但是由于某种原因,您第一次只能听到歌曲的第一瞬间。然后第二次,你听到这首歌。使用以下方法进行某种补丁修复:
[self.musicPlayer stop];
[self.musicPlayer setQueueWithQuery:persistentQuery];
[self.musicPlayer play];
[self.musicPlayer stop];
[self.musicPlayer play];
不起作用 - 这只会让它每次都播放第一个瞬间。