5

像许多应用程序一样,如果某个隐私权限已被禁用,我的 iOS 应用程序会为用户提供打开应用程序设置页面的机会。

在 iOS 中,使用特殊的UIApplicationOpenSettingsURLString/ openSettingsURLStringURL 将用户带到设置应用程序的应用程序特定页面。除了应用程序提供的 Settings.bundle 中的任何设置设置(如果有)之外,用户还可以看到应用程序使用的各种隐私设置。

在 iOS 应用程序的 Mac Catalyst 端口上工作时,这并没有像希望的那样工作。特殊设置 URL 的相同使用显示了用户在单击“首选项...”菜单时看到的相同首选项窗格。这只是应用程序的 Settings.bundle 提供的内容。该应用程序的隐私设置不像在 iOS 中那样显示。

我可以在 macOS 设置应用程序中查看我的应用程序的隐私设置,方法是单击“安全和隐私”,然后单击“隐私”选项卡,然后单击左侧列表中的相应项目,例如“联系人”或“照片”。但这些设置不按应用分组。

有没有办法让 macOS 版本的 iOS 应用程序在一个地方显示各种隐私设置,比如在 iOS 上运行时?如果没有,是否至少有一种方法可以直接在 macOS 中启动“设置”应用并显示“隐私”窗格?

4

1 回答 1

9

这与你在 iOS 中得到的并不完全相同,但它与我认为你能得到的一样接近。根据对 Cocoa 的这个答案找到的信息,按钮打开一个系统偏好页面,我更新了我的代码,如下所示:

目标-C:

    NSString *url;
#if TARGET_OS_MACCATALYST
    url = @"x-apple.systempreferences:com.apple.preference.security?Privacy_Calendars"; // Update as needed
#else
    url = UIApplicationOpenSettingsURLString;
#endif
    [UIApplication.sharedApplication openURL:[NSURL URLWithString:url] options:@{} completionHandler:nil];

迅速:

let url: String
#if targetEnvironment(macCatalyst)
url = "x-apple.systempreferences:com.apple.preference.security?Privacy_Calendars" // Update as needed
#else
url = UIApplication.openSettingsURLString
#endif
UIApplication.shared.open(URL(string: url)!)

以下是一些可能的隐私设置的 URL:

隐私 x-apple.systempreferences:com.apple.preference.security?Privacy
隐私照片 x-apple.systempreferences:com.apple.preference.security?Privacy_Photos
隐私相机 x-apple.systempreferences:com.apple.preference.security?Privacy_Camera
隐私麦克风 x-apple.systempreferences:com.apple.preference.security?Privacy_Microphone
隐私位置 x-apple.systempreferences:com.apple.preference.security?Privacy_LocationServices
隐私-联系人 x-apple.systempreferences:com.apple.preference.security?Privacy_Contacts
隐私日历 x-apple.systempreferences:com.apple.preference.security?Privacy_Calendars
隐私提醒 x-apple.systempreferences:com.apple.preference.security?Privacy_Reminders

注意:虽然这在开发中有效,但我还不确定这是否会在 App Store 中获得批准。

于 2019-10-19T23:44:02.327 回答