Go to the review of the App Store in iOS 6

It seems that using the itms-apps // .... URL scheme doesnโ€™t work in iOS 6 with the new app store to show the product review area. Now I use the code below, but it just shows you the product. How do you get into the review area to ask for a review and transfer the user to the desired tab of the displayed product?

void DoReview() { var spp = new StoreProductParameters(appId); var productViewController = new SKStoreProductViewController(); // must set the Finished handler before displaying the view controller productViewController.Finished += (sender2, err) => { // Apple docs says to use this method to close the view controller this.navigationController.DismissViewController(true, null); MySettings.AskedForReview = true; }; productViewController.LoadProduct(spp, (ok, err) => { // ASYNC !!! if (ok) { this.navigationController.PresentViewController(productViewController, true, null); } else { Console.WriteLine(" failed "); if (err != null) Console.WriteLine(" with error " + err); } }); } 
+4
source share
1 answer

Hello, you can try Nick Lockwood's iRate and see if this suits your needs, you can find MonoTouch bindings for iRate here .

btw uses the following URL to open the AppStore in view mode:

itms-apps: //ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews? type = Purple + Software & id = your-AppID-here

Alex

+1
source

Source: https://habr.com/ru/post/1439415/


All Articles