当我要求用户评价我的应用时,我应该确保有互联网连接吗?如果没有互联网会发生什么?Apple 文档没有说明这一点。我是否应该假设它存储在本地,并且当有连接时它会被更新?
if let scene = UIApplication.shared.connectedScenes.first(where: { $0.activationState == .foregroundActive }) as? UIWindowScene {
SKStoreReviewController.requestReview(in: scene)
}