Skip to main content

Posts

Showing posts with the label Storekit

How and when to ask users to leave a review for your iOS app

I finally added a means of requesting users to leave a review for the My Day To-Do family of apps ( Pro or Lite ). The interesting thing is, the underlying code to do so is different for those using iOS 10.3 and above and those with iOS versions below it. In this post, I am going to share the code ( Swift ) to achieve that and my logic behind when to prompt users to leave a review. What logic? I mean as a user the last thing I want is for an app to ask me to leave a review, the first time I open it. That's just annoying and in that case I am more likely to leave a negative review. Anyway without further a due let's get to it. Background Prompting users to leave a review for My Day To-Do was a lower priority item on the list of things to-do for My Day To-Do. However the recent spike in downloads for My Day To-Do just made it a higher priority item and something to be done ASAP (If you want to know more about the download spike, you can read this post ). In my quest to ...