GitHunt
KE

keronsen/appstax-ios

iOS SDK for Appstax

Appstax iOS SDK

This is the official SDK for Appstax. Please read the iOS Guide to get up and running.

Installing

Download the latest release and add Appstax.framework to your app.

Example usage

[Appstax setAppKey:@"your-app-key"];

AXObject *contact = [AXObject create:@"Contacts"];
contact[@"name"]  = @"John Appleseed";
contact[@"email"] = @"john@appleseed.com";
[contact save];

See the iOS Guide for more info on how to set up your app and data model.

Building from source

Open Appstax/Appstax.xcodeproj in XCode and build the AppstaxUniversal target, or run ./build.sh on the command line.

License

The Appstax iOS SDK is licensed under the MIT License
The Starscream framework is licensed under the Apache License

Languages

Swift51.8%Objective-C47.6%Shell0.7%

Contributors

MIT License
Created August 16, 2016
Updated August 16, 2016
keronsen/appstax-ios | GitHunt