A simple YO SDK for iOS
Drag YO folder into your project in Xcode. Include #import "YO.h"
In AppDelegate, include the following code in didFinishLaunchingWithOptions:
// Put your APIKey
NSString *APIKey = @"20af1dd2-93af-869f-446c-0675f8694095";
[YO startWithAPIKey:APIKey];
In your code:
// Send A Yo To All Subscribers
[YO sendYO];
// Yo Individual Usernames
[YO sendYOToIndividualUser:@"YIQIN1"];
// Count Total Subscribers
[YO countTotalSubscribers];
- Fork it.
- Create your feature branch (git checkout -b new-feature).
- Commit your changes (git commit -am 'Added new-feature').
- Push to the branch (git push origin new-feature).
- Create new Pull Request.