I need to implement the rate tha app popup when user every 5th time open the app user can also give review
and then i need to redirect him to page of iTu开发者_StackOverflownes
Since iOS 10.3+ the right way to request app reviews is through SKStoreReviewController, which is Apple's official way of requesting App Store ratings and reviews from users.
Simply call:
[SKStoreReviewController requestReview];
More details on the class: SKStoreReviewController
Have a look at the excellent Appirater library. The APPIRATER_USES_UNTIL_PROMPT
constant in Appirater.h
defines often the prompt appears. The prompt reappears in new versions of your app!
精彩评论