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's 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); } }); }解决方法 你好,你可以试试 iRate from Nick Lockwood,看看是否符合你的需求,你可以找到 MonoTouch bindings of iRate here.
顺便说一下,它使用以下URL在审阅模式下打开AppStore:
itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/vIEwContentsUserRevIEws?type=Purple+Software&ID= your-AppID-here
亚历克斯
总结以上是内存溢出为你收集整理的转到iOS 6中的App Store评论全部内容,希望文章能够帮你解决转到iOS 6中的App Store评论所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)