skstorereviewcontroller

SKStore​Review​Controller, How to use it in a correct way?

匆匆过客 提交于 2019-11-28 06:14:28
I have seen some answer but not satisfied with them and got some idea, but don't know how to use it properly, so that it will execute in proper way, though i think it should be used in App delegates didFinishLaunching , but i wanted to be sure before implement it in Live app without any hustle. SKStore​Review​Controller is only work for ios 10.3 what i read, could anybody explain with little bit of code in swift and objective c. UPDATE: Actually I'm confused about calling the method request​Review() , Where do i need to call this method? in rootViewController 's viewDidLoad or in appDelegate

Is it possible determine if SKStore​Review​Controller has been presented.

你。 提交于 2019-11-27 18:35:31
问题 My intention is to either display the SKStore​Review​Controller (If applicable) or display my own feedback controller and redirect the user to the App Store. By doing this I can avoid asking the user for feedback more than once. After reading Apple's lacking documentation on SKStore​Review​Controller (https://developer.apple.com/reference/storekit/skstorereviewcontroller) it seems that there is no way to determine if SKStore​Review​Controller is currently presented or has been presented

Why the SKStoreReviewController does not let me submit a review?

不问归期 提交于 2019-11-27 07:25:34
I succeeded implementing the SKStoreReviewController . But when the prompt comes up, the "Submit" button is grey & disabled. I thought it was because I was in debug mode, but when I ship the app with Ad-Hoc PP the result is the same. Why? Apple provides the answer for you right here . When you call this method in your shipping app and a rating/review request view is displayed, the system handles the entire process for you. Emphasis mine. To help clarify this some: When building in XCode, you will see what the OP shows in the screenshot When building from a CI solution for release, you will not

SKStore​Review​Controller, How to use it in a correct way?

与世无争的帅哥 提交于 2019-11-27 05:38:56
问题 I have seen some answer but not satisfied with them and got some idea, but don't know how to use it properly, so that it will execute in proper way, though i think it should be used in App delegates didFinishLaunching , but i wanted to be sure before implement it in Live app without any hustle. SKStore​Review​Controller is only work for ios 10.3 what i read, could anybody explain with little bit of code in swift and objective c. UPDATE: Actually I'm confused about calling the method request

Why the SKStoreReviewController does not let me submit a review?

大兔子大兔子 提交于 2019-11-26 10:56:34
问题 I succeeded implementing the SKStoreReviewController . But when the prompt comes up, the \"Submit\" button is grey & disabled. I thought it was because I was in debug mode, but when I ship the app with Ad-Hoc PP the result is the same. Why? 回答1: Apple provides the answer for you right here. When you call this method in your shipping app and a rating/review request view is displayed, the system handles the entire process for you. Emphasis mine. To help clarify this some: When building in XCode