http://support.apple.com/kb/HT5509
是否可以访问此api?可能将其设置为在打开应用程序时绕过这些步骤?
目前,没有。您应该提交一份雷达,要求 Apple 提供 API。
2013 年 WWDC 深度引导访问(开始于 39:26)
检查是否启用了引导访问(iOS 6+):
UIAccessibilityIsGuidedAccessEnabled()
响应引导访问状态更改(iOS 6+):
UIAccessibilityGuidedAccessStatusDidChangeNotification
在引导访问模式(iOS 7+)下添加自定义限制:
UIGuidedAccessRestrictionDelegate
获取指定限制的限制状态(iOS 7+):
迅速:
func UIGuidedAccessRestrictionStateForIdentifier(_ restrictionIdentifier: String) -> UIGuidedAccessRestrictionState
对象-C
UIGuidedAccessRestrictionState UIGuidedAccessRestrictionStateForIdentifier(NSString *restrictionIdentifier);