我有一个被拒绝的应用,因为我测试用户是否可以访问他们的CloudKit容器。
如果它们没有连接,我会发出警告,并告诉他们退出应用程序。
我不可能是唯一一个体验过这种情况的人。任何人都有解决方法吗?
谢谢..
有关信息,我用来测试的代码是从Apple TSI工程师发给我的。叹息..
这是:
func isICloudContainerAvailable()->Bool {
print(#function)
CKContainer.default().accountStatus { (accountStatus, error) in
if accountStatus == .available {
print(#function, "accountStatus 1: ", accountStatus)
return
} else {
print(#function, "accountStatus 2: ", accountStatus)
}
DispatchQueue.global().asyncAfter(deadline: .now() + 0.3) {
guard error != nil, accountStatus != CKAccountStatus.available else {return}
print( #function, "accountStatus 3: ", accountStatus)
print("iCloud account is not available! Be sure you have signed in iCloud on this device!")
}
}
if FileManager.default.ubiquityIdentityToken != nil {
print("User logged in")
return true
}
else {
print("User is not logged in")
return false
}
}
这里使用的功能是:
if !isICloudContainerAvailable() {
let alertController = UIAlertController(title: "Uh-oh", message: "You must be signed into iCloud \nto use this app.\nPlease quit, log in to iCloud using the 'Settings' app\nand try again", preferredStyle: .alert)
let defaultAction = UIAlertAction(title: "OK", style: .default, handler: nil)
alertController.addAction(defaultAction)
self.present(alertController, animated: true, completion: nil)
})
答案 0 :(得分:2)
如果没有CloudKit访问权限,您将无法使应用程序无法正常运行。您只能要求用户登录iCloud以获取该应用程序的全部功能。如果没有CloudKit访问权限,您的应用程序的功能如何(联合国)无关紧要。也许你可以显示一个指令屏幕或一些关于该应用程序的一般信息。然后,您还可以实现对iCloud登录的检测并自动重新初始化您的应用,以便用户不必退出(实际杀死)并重新启动它。