Provide your ios app for review
From iOS 10 (10.3 to be precise), apple made it possible for the developers to ask for rating the app from inside the app itself. This is possible for us through SKStoreReviewController API. Let’s see what it was before and what it will be from now. Show
Before iOS — 10.3 ( Even now we can do this :p )If you want the user to rate the app, we normally redirect them to the appstore and the user can enter the rating there. We use the Example: @IBAction func rateUsButtonClicked( sender: Any) {rateApp(appId: “id1147613120”)}fileprivate func rateApp(appId: String) {openUrl(“itms-apps://itunes.apple.com/app/” + appId)}fileprivate func openUrl( urlString:String) {let url = URL(string: urlString)!if available(iOS 10.0, *) {UIApplication.shared.open(url, options: [:], completionHandler: nil)} else {UIApplication.shared.openURL(url)}}And where do we get the id from??Source: Stackoverflow Question How get the ID :
It will look something like this: This is the classic way of asking the user to rate the app. We can still do this stuff. But from iOS 10.3, apple gives a much convenient way of doing this in few simple steps. This is to provide a standardised interface that users can trust, iOS 10.3 brought a built-in way to ask users to review the app, and it couldn’t be much easier to use. How to use SKStoreReviewController??Just follow these simple steps:
import StoreKit
if available( iOS 10.3,*){SKStoreReviewController.requestReview() } That’s it !!!. The OS will show a standard rating view inside the app like this: Sample image provided by apple Are there any limitations? Can we call this requestReview() method inside a button action and call this on every button click?May be we can. But you shouldn’t do this. Why?? Because apple told not to do it this way. Read the . When to use SKStoreReviewController??It’s important to ask for feedback at appropriate times. Keep these considerations in mind when asking people to rate your app. Ask for a rating only after the user has demonstrated engagement with your app. For example, prompt the user upon the completion of a game level or productivity task. Never ask for a rating on first launch or during onboarding. Allow ample time to form an opinion. Don’t interrupt the user, especially when they’re performing a time-sensitive or stressful task. Look for logical pauses or stopping points, where a rating request makes the most sense. Don’t be a pest. Repeated rating prompts can be irritating, and may even negatively influence the user’s opinion of your app. Allow at least a week or two between rating requests and only prompt again after the user has demonstrated additional engagement with your app. If the user hasn’t already given feedback and a request hasn’t been made too recently, the system displays an in-app prompt that asks for a rating and an optional written review. The user can supply feedback or dismiss the prompt with a single tap. (In Settings, the user can also opt out of receiving these rating prompts for all apps they have installed.) The system automatically limits the display of the prompt to three occurrences per app within a 365-day period. Prefer the system-provided prompt. The system’s rating prompt offers a familiar, efficient experience that’s designed to engage the user with minimal impact. Don’t use buttons or other controls to request feedback. Since the system limits how often rating prompts occur, attempting to request feedback in response to a control may result in no rating prompt being displayed. Based on the documentations, the request review function uses a proprietary method to analyze if it is a suitable time to ask user for a review, therefore it is strongly recommended that developers avoid calling this function in response to a user action. Important!!Keep these points in mind while coding:
Consider storing a simple run count for your app using 0, then calling the method after your app has been run 10 times. By that point it’s pretty clear the user keeps coming back to your app, so hopefully you have more chance of getting a positive review! Simply choose when to prompt users to rate your app, for up to three prompts in a 365-day period. Customers will submit a rating through the standardized prompt, and can authenticate with Touch ID to write and submit a review. When to ask for review:The main step is to ask for the review in a proper time. I would suggest to call this function whenever user has accomplished a major work in the app. It varies from app to app. I made a custom class to track the number of app running sessions . Please check the gist below. 1 method is called from 2 and an 3 value in 0 is incremented. The method 5 is called whenever the user is happy 😊 (technically I check if it is the 10th 50th or every 100th session). You can either use this or implement your own logic. Note: I am using Defaults for readability. I have added the following code in my constants file. let Defaults = UserDefaults.standard So that I don’t have to use 6 everywhere. Also, I made a struct in my constants file named 7 and added all the keys that I use inside the app. struct UserDefaultsKeys {static let APP_OPENED_COUNT = “APP_OPENED_COUNT”} Enjoy!! If you enjoyed reading this post, please share and recommend it so others can find it 💚💚💚💚💚💚 !!!!You can follow me on Medium for fresh articles. Connect with me on LinkedIn. If you have any comment, question, or recommendation, feel free to post them in the comment section below! How do I submit an iOS app for review?Scroll to the "Build" section in your app's App Store Connect record. Click on "Select a build before you submit your app." Choose the build that you uploaded through Xcode. Click Done in the bottom right-hand corner, then Save in the top-right hand corner, then Submit for Review. What is iOS app review?App reviews in the Apple App Store are user-generated feedback on a particular app. Every time people rate an app, they can leave a written review of their experience. The reviews are publicly displayed on the app's product page in the App Store and can be viewed by anyone. How do I get my iOS app approved?Here, we bring you nifty tips on getting your app approved by the Apple App Store.. Check for Errors. ... . Give All the Necessary Details. ... . Keep It Simple. ... . Play by the Rules. ... . Read Previous Case-Histories. ... . Get Creative. ... . Be Polite. ... . Learn Patience.. How do I submit an in app purchase for review iOS?In App Purchases If you have an in app purchase, you need to submit it for review before submitting the app for review. Visit App Store Connect, click your app, then under "In-App Purchases" click Manage. Click your purchase. |