我正试图通过我的iOS应用程序打开用户的iCloud设置。目前,我有这个:
@IBAction func openSettings(_ sender: AnyObject) {
guard let settingsUrl = URL(string: UIApplicationOpenSettingsURLString) else {
return
}
if UIApplication.shared.canOpenURL(settingsUrl) {
UIApplication.shared.openURL(settingsUrl)
}
}
然而,这会打开应用程序的。如何打开用户的 iCloud 设置?谢谢!