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).
Hello,
please change these methods
to class methods like this:
Otherwise you cannot access them (sharedInstance is private).