arashpayan / appirater

A utility that reminds your iPhone app's users to review the app.

Home Page:http://arashpayan.com/blog/2009/09/07/presenting-appirater/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Change 2 object methods to class methods

nickbit opened this issue · comments

Hello,

please change these methods

- (BOOL)userHasDeclinedToRate;
- (BOOL)userHasRatedCurrentVersion;

to class methods like this:

+ (BOOL)userHasDeclinedToRate;
+ (BOOL)userHasRatedCurrentVersion;

Otherwise you cannot access them (sharedInstance is private).

Good point. This will have to wait until version 3.x because it's an API change.