In the ranking of applications for users with an OS version below iOS 11

How can users of iOS apps below iOS 11 rate the app?

Should I write conditional code something like this:

if (iOS11) {
    [SKStoreReviewController requestReview];
} else {
    //show custom review prompt and redirect to app store
}

Will Apple allow this or reject the application? If Apple does not allow this, then what should other users do? Thanks in advance.

+4
source share
1 answer

Working and tested solution

if (NSClassFromString(@"SKStoreReviewController")) {

            [SKStoreReviewController requestReview];
        }
        else{
             //redirect user to AppStore
        }
0
source

Source: https://habr.com/ru/post/1685159/


All Articles