Direct api access - readmill/ios-wrapper GitHub Wiki
Direct API Access
If the Readmill-provided user interface access and object model classes don’t match your application’s architecture or use-case, you can get direct access to the Readmill API through the SDK. This is the most complicated of the three ways to integrate with Readmill, but is also the most powerful.
If you integrate with Readmill this way, you’ll only need to interact with one class from the SDK — ReadmillAPIWrapper
. The ReadmillAPIWrapper
class is essentially an Objective-C wrapper of the online Readmill API, translating method calls into web requests and web responses into NSDictionary
and NSArray
objects.
The best way to get started with ReadmillAPIWrapper
is to dive right in! You’ll find documentation and usage tips for each method in the ReadmillAPIWrapper.h
header file, and the SDK’s object model uses ReadmillAPIWrapper
extensively, providing lots of sample code to guide you along.