TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
iOS easy framework to Rate AppStore application
based on iRate but simpler.
platform :ios, '5.0'
pod "SBRateApp", "~> 0.1.2"
#import "SBRateApp.h"
[SBRateApp rateApp].appStoreID = 123456; //real AppStore ID from itunes
[SBRateApp rateApp].usesUntilPrompt = 5; //times until prompt the alert
//you can custom all about message, these options are optional
[SBRateApp rateApp].applicationName = @"My App"; //Optional
[SBRateApp rateApp].messageTitle = @"title custom";
[SBRateApp rateApp].message = @"Custom Message";
[SBRateApp rateApp].cancelButtonLabel = @"cancel custom";
[SBRateApp rateApp].remindButtonLabel = @"remind later custom";
[SBRateApp rateApp].rateButtonLabel = @"Rate now custom";
//you can execute this method to fire the rate action wherever you want
[[SBRateApp rateApp] rateNow];