-
-
Save SLboat/ab7acd970b25923a0c0856b60f1676b5 to your computer and use it in GitHub Desktop.
Using ScriptingBridge from Swift.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/swift | |
import ScriptingBridge | |
@objc protocol iTunesTrack { | |
optional var name: String {get} | |
optional var album: String {get} | |
} | |
@objc protocol iTunesApplication { | |
optional var soundVolume: Int {get} | |
optional var currentTrack: iTunesTrack? {get} | |
} | |
extension SBApplication : iTunesApplication {} | |
let app: iTunesApplication = SBApplication(bundleIdentifier: "com.apple.iTunes") | |
// Because these are all optional properties (to avoid providing an implementation), we have | |
// to use '!' to indicate we know the implementation exists. | |
let track: iTunesTrack? = app.currentTrack! | |
let album = track?.album! | |
let trackName = track?.name! | |
println("Current track: \(trackName) - \(album)") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment