Skip to content

A Spotify wrapper class for controlling Spotify on macOS

License

Notifications You must be signed in to change notification settings

kmikiy/SpotifyAppleScript

Repository files navigation

SpotifyAppleScript

A Spotify wrapper class for controlling Spotify on macOS.

This wrapper class was originally created for SpotMenu.

Installation

To integrate Spotify into your Xcode project using CocoaPods, specify it in your Podfile:

platform :osx, '10.10'
use_frameworks!

target '<Your Target Name>' do
    pod 'SpotifyAppleScript', '~> 0.3'
end

Then, run the following command:

$ pod install

Usage example

import SpotifyAppleScript


// Get current artist
if let artist = SpotifyAppleScript.currentTrack.artist {
    print(artist)
}

// Get current track title
if let title = SpotifyAppleScript.currentTrack.title {
    print(title)
}

// Play next song
SpotifyAppleScript.playNext()

For a real-world example checkout SpotMenu