* MM-15643 Send user to settings when passcode is required * Allow access to the managed config in the iOS extensions
5 lines
201 B
Swift
5 lines
201 B
Swift
let configurationKey = "com.apple.configuration.managed"
|
|
|
|
func getManagedConfig() -> [String : Any] {
|
|
return UserDefaults.init(suiteName: APP_GROUP_ID)?.dictionary(forKey: configurationKey) ?? [:]
|
|
}
|