skstorereviewcontroller

SKStoreKitReviewController and Darkmode

旧巷老猫 提交于 2020-02-21 09:56:26
问题 Is there any way to alter the colors/tint of an SKStoreKitReviewController? When I am modifying my apps to support DarkMode, when in dark mode, the presented viewController does not look good. 回答1: This issue was resolved in iOS 13.2. The blur effect is dark, just like other system alerts when Dark Mode is enabled. 来源: https://stackoverflow.com/questions/57763132/skstorekitreviewcontroller-and-darkmode

Checking iOS requestReview() output?

走远了吗. 提交于 2020-01-06 06:41:16
问题 Is there any way to know if the user tapped a star to rate the app or clicked Not Now when requestReview() is presented? I would like to be able to reward the user if he or she rated the app and not call requestReview() again in that case. Thank you! 来源: https://stackoverflow.com/questions/49980650/checking-ios-requestreview-output

SKStoreReviewController buttons hidden under keyboard

爱⌒轻易说出口 提交于 2019-12-29 08:42:52
问题 My swift iOS app has an active textfield with keyboard showing. Everytime user taps the return key on keyboard, I call SKStoreReviewController.requestReview() This may sound excessive but once the user has given the review, above statement will not do anything so I think my approach is correct. Problem is that on smaller screen devices (iPhone 5 etc), the displayed SKStoreReviewController's buttons are hidden under the keyboard. So the user gets stuck as they cannot dismiss the

SKStoreReviewController requestReview() may or may not present and alert?

ⅰ亾dé卋堺 提交于 2019-12-21 06:50:15
问题 I'm taking a look at the new requestReview() API that uses SKStoreReviewController . The documents state: "Although you should call this method when it makes sense in the user experience flow of your app, the actual display of a rating/review request view is governed by App Store policy. Because this method may or may not present an alert, it's not appropriate to call it in response to a button tap or other user action." Does anyone have any experience using this API. What exactly are the

Do a class equivalent to IOS's SKStoreReviewController exist for Android?

南楼画角 提交于 2019-12-09 15:34:01
问题 If you want to request a review of your app you can use SKStoreReviewController on IOS. But i can't seem to find an equivalent for Android. Does it exist? Or do i need to add a custom implementation? 回答1: I'm afraid Google has not yet provided any such official API's . There's no way one can submit reviews/ratings without leaving apk. 来源: https://stackoverflow.com/questions/46278199/do-a-class-equivalent-to-ioss-skstorereviewcontroller-exist-for-android

Do a class equivalent to IOS's SKStoreReviewController exist for Android?

≯℡__Kan透↙ 提交于 2019-12-04 03:04:15
If you want to request a review of your app you can use SKStoreReviewController on IOS. But i can't seem to find an equivalent for Android. Does it exist? Or do i need to add a custom implementation? I'm afraid Google has not yet provided any such official API's . There's no way one can submit reviews/ratings without leaving apk. 来源: https://stackoverflow.com/questions/46278199/do-a-class-equivalent-to-ioss-skstorereviewcontroller-exist-for-android

Mechanism to detect display of iOS 10.3 app rating dialog?

笑着哭i 提交于 2019-12-03 20:22:01
问题 TL;DR: Is there some way on iOS to detect the presence/display of the Storekit App Rating dialog added in iOS 10.3? I've recently added support for the new app rating dialog to my apps using: [SKStoreReviewController requestReview]; However, I'm aware there's some caveats of usage (as documented here), namely that the dialog may or may not be presented on calling the above function, the not cases including if the customer has already rated the app or the customer has dimissed the dialog 3

SKStoreReviewController how to detect that user has turned off Rate This App (RTA) in settings or 3 times limit has reached?

﹥>﹥吖頭↗ 提交于 2019-12-03 08:04:00
问题 Starting iOS 10.3, Apple is limiting the review prompt (Rate This App) to 3 times a year and it can be turned off in the user's settings. Q: How do we detect that the 3 times limit has reached or if the user has turned off RTA so in the app I won't show a popup saying: "Did you like the app? If yes, can you write a review? [Yes/No]" because then, if the user taps Yes, nothing will show up. There is really not much information here from the official documentation: https://developer.apple.com

SKStoreReviewController how to detect that user has turned off Rate This App (RTA) in settings or 3 times limit has reached?

匆匆过客 提交于 2019-12-02 20:47:56
Starting iOS 10.3, Apple is limiting the review prompt (Rate This App) to 3 times a year and it can be turned off in the user's settings. Q: How do we detect that the 3 times limit has reached or if the user has turned off RTA so in the app I won't show a popup saying: "Did you like the app? If yes, can you write a review? [Yes/No]" because then, if the user taps Yes, nothing will show up. There is really not much information here from the official documentation: https://developer.apple.com/reference/storekit/skstorereviewcontroller Although you should call this method when it makes sense in

Mechanism to detect display of iOS 10.3 app rating dialog?

谁都会走 提交于 2019-11-30 15:39:07
TL;DR: Is there some way on iOS to detect the presence/display of the Storekit App Rating dialog added in iOS 10.3? I've recently added support for the new app rating dialog to my apps using: [SKStoreReviewController requestReview]; However, I'm aware there's some caveats of usage (as documented here ), namely that the dialog may or may not be presented on calling the above function, the not cases including if the customer has already rated the app or the customer has dimissed the dialog 3 times. I'm also aware that Apple doesn't expect presentation of the dialog to be directly invoked by a