これが表示されているかどうかを検出する方法は次のとおりです。
private static func checkIfShownSKStoreReviewController(_ iteration: Int, originalWindowCount: Int) {
let windows = UIApplication.shared.windows
if windows.count > originalWindowCount {
let window = windows[1]
if window.className == "UITextEffectsWindow" || window.className == "UIRemoteKeyboardWindow" {
print("Shown SKVC iteration: \(iteration)")
//Do logic stuff like saving to your database
return
}
}
if iteration > 2000 {
print("checkIfShownSKStoreReviewController: timeout, bailing \(iteration)")
return
}
runThisAfterDelay(seconds: 0.02, after: {
checkIfShownSKStoreReviewController(iteration + 1, originalWindowCount: originalWindowCount)
})
}
private static func runThisAfterDelay(seconds seconds: Double, after:() ->()) {
let time = dispatch_time(DISPATCH_TIME_NOW, Int64(seconds * Double(NSEC_PER_SEC)))
dispatch_after(time, dispatch_get_main_queue(), after)
}
static func showReview() {
print("Showing AppStore Review")
if #available(iOS 10.3, *) {
SKStoreReviewController.requestReview()
checkIfShownSKStoreReviewController(0, originalWindowCount: UIApplication.shared.windows.count)
}
}
あなたはUserDefaultsを使用したくないと言っていますが、SKStore Review Controllerが現在提示されているかどうかを判断する方法がある場合でも、その値をどのように保存しますか? しかし、私は[this](http://stackoverflow.com/questions/43075515/how-to-use-requestreview-skstorereviewcontroller-to-show-review-popup-in-the)に回答します。 –
[SKStoreReviewController]が重複している可能性があります。ユーザーが設定したレートでこのアプリ(RTA)をオフにしたことを検出する方法は3回までに達していますか?](https://stackoverflow.com/questions/42533520/skstorereviewcontroller-how-to-detectユーザーがオフになっています。このアプリは動作しません。 –