Skip to content

Latest commit

 

History

History
44 lines (31 loc) · 859 Bytes

File metadata and controls

44 lines (31 loc) · 859 Bytes

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