Skip to content

andyland/ios-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Under Development!

This SDK aims to help php developers get easier access to the TuneWiki API

Supports iOS 5+

##Getting Started Copy all the files under src into your project and define your API key and secret in TWAPI.h

Example usage:

// Create a request
TWAPIRequest *request = [TWAPIGetLyricsRequestgetLyricsRequestForArtist:@"Of Montreal"
                                                                  title:@"An Eluardian Instance"
                                                               language:@"en-US"
                                                               delegate:self];
// Start it
[request start];

// If you need to cancel it
[request cancel];

Your delegate should implmement the following methods:

- (void) receivedResponse:(id)response;
- (void) failedWithError:(NSError*)error;

A successful request will receive an instance of TWAPILyrics back.

TODO

  1. OAuth Signed Requests
  2. POST actions for editing / syncing lyrics

License

Released under the MIT License

About

iOS SDK for TuneWiki's Public API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published