使用 SKStoreReviewController 进行 inAppReview 需要时间,直到出现提示,有没有办法让它显示得更快?
另外,提交按钮总是变暗,不允许我评价,这是因为我还没有将应用上传到应用商店吗?
import StoreKit
protocol InAppReviewProtocol {
func requestInAppReview()
}
extension InAppReviewProtocol {
func requestInAppReview() {
if #available(iOS 10.3, *) {
SKStoreReviewController.requestReview()
} else {
// Fallback on earlier versions
if let appStoreLink = URL(string: Constants.shareApp.url) {
UIApplication.shared.openURL(appStoreLink)
}
}
}
}