3

有没有办法能够访问 Apple 键盘上的 F7、F8 和 F9 键在 Mac OS X 的 Swift 中具有的相同功能,因为我希望能够创建一个按钮来暂停当前播放的曲目Spotify 或 iTunes,然后再次播放。

4

1 回答 1

0

您可以使用 Applescript 来执行此操作,使用NSAppleScript. 这是一个快速而肮脏的示例,用于在 spotify 中切换当前曲目的播放/暂停状态:

let command = "if application \"Spotify\" is running then tell application \"Spotify\" to playpause"
let commandObject = NSAppleScript(source: command)
var error: NSDictionary?
commandObject!.executeAndReturnError(&error)

您可以在https://developer.spotify.com/applescript-api/阅读有关 Spotify 的 applescript API 的更多信息

于 2017-08-19T12:53:43.357 回答