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 {
}
Will Apple allow this or reject the application? If Apple does not allow this, then what should other users do? Thanks in advance.
source
share