As we all know, comments and ratings are important factors that determine the App ranking in the App Store. However, most users do not comment after downloading and installing the APP, therefore, it is necessary to add a prompt to the user for comment.
I discussed it with my colleagues and read several other applications that have added this function. These applications are prompted to comment when opening the application. We think this is not good, the user has not used the application yet, and it is unclear how the application works. How can I comment on it? Therefore, we agree that the user will be prompted to comment when exiting the application, or simply add a comment button to allow the user to choose when to comment.
After using the software, many users forget or are too troublesome to go To the App Store for scoring. Therefore, developers can add the scoring button to the App and click it to go to the AppStore scoring page.
The URL of the comment on the App Store is itms-apps: // ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews? Type = Purple + Software & id = appID
So you can use this code:
- NSString * str = [NSString stringWithFormat:
- @ "Itms-apps: // ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews? Type = Purple + Software & id = % d ",
- M_appleID];
- [[UIApplication sharedApplication] openURL: [NSURL URLWithString: str];