Skip to content

Appstax/appstax-ios

Repository files navigation

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