Important facts about commercial licenses

  • Licenses are perpetual. They do not expire and do not need to be renewed.
  • Licenses can be upgraded. You can upgrade to a more expensive license later paying only the difference in cost.
  • Pay attention to the distribution type - Hosted (sites / servers), binary (applications) or source (includes all the others). Choose according to your needs (more below).
  • All licenses allow commercial use unless otherwise indicated.
  • Read the full license by clicking on the icon.
  • Read more about licenses in our handy license guide.
$9

Single App License

1 application Binary restricted distribution
$39

Multiple App License

5 applications Binary restricted distribution 6 months support
$49

Developer License

Unlimited projects Source and binary distribution 6 months support
You need to log-in or create an account
  • Create an account
  • Log-in
  • Please use your real name.
  • Account activation link will be sent to this address.
  • Minimum 8 characters

Clicking this button confirms you read and agreed to the terms of use and privacy policy.

(1 ratings)

iOS App Rate/Review Auto Suggest

iOS App Rate/Review Auto Suggest
Developed by Tal, Released May 29, 2012

Simple and easy way to ask the user to rate your iOS app every couple of days.

Objective-C

Tags: alert , ask , auto , days

One of the most important things you need to do in your iOS app, is ask the user to rate your app.

This alone will boost your download rate, as users first check what other thought of your app before deciding if they are willing to pay.

Provided is an independent class that automatically checks the last time a rate suggest alert was shown, and knows if one should be displayed.

  • Supports iOS 6.

  • Thread safe, uses singleton design pattern.

  • Adjusted for ARC. If your code is using RC, add a "-fobjc-arc" to RateSuggestService.m compiler flags.

After adding the class to your project, add these lines of code to application:didFinishLaunchingWithOptions:, change the suggest interval to you desired value, in days -

NSString *rateUrl = [NSString stringWithFormat:@"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=%d&pageNumber=0&sortOrdering=1&type=Purple+Software", APP_ID];

[[RateSuggestService sharedService] setSuggestInterval:7];
[[RateSuggestService sharedService] setRateUrl:rateUrl];
[[RateSuggestService sharedService] setAlertTitle:NSLocalizedString(@"Rate MyApp", nil) 
                body:NSLocalizedString(@"Would you mind taking a moment and rate MyApp?", nil)  
                buttonYes:NSLocalizedString(@"Yes", nil)  
                buttonNo:NSLocalizedString(@"No, thanks", nil)];

Then, you want to check if rate suggest is required every time your app becomes active, place this code at applicationDidBecomeActive: -

[[RateSuggestService sharedService] check];

That's it!

Provided example that demonstrate how to use this service, but it's pretty what is shown here above.

Feel free to ask me anything through the issues tab.

View all 1 reviews »

User Reviews

Questions & Comments


Or enter your name and Email
No comments have been posted yet.
You must be logged-in to vote. Log-in to your account or register now.