我正在尝试在 Xcode 9 beta 3 上构建 Apple 提供的 Music Kit 示例应用程序“向 Apple Music 添加内容”。但是我遇到了 4 个这样的错误:三个“不明确地使用 'play()'”错误和一个“'pause()' 的模糊使用”
如果您已经解决了这个问题,请告诉我如何解决这个问题。
func beginPlayback(itemCollection: MPMediaItemCollection) {
musicPlayerController.setQueue(with: itemCollection)
//Ambiguous use of 'play()’
musicPlayerController.play()
}
func beginPlayback(itemID: String) {
musicPlayerController.setQueue(with: [itemID])
//Ambiguous use of 'play()’
musicPlayerController.play()
}
// MARK: Playback Control Methods
func togglePlayPause() {
if musicPlayerController.playbackState == .playing {
//Ambiguous use of 'pause()’
musicPlayerController.pause()
} else {
//Ambiguous use of 'play()’
musicPlayerController.play()
}
}