2

I was testing the lockdown mode in iOS 16 beta 3 and would like to know whether we can detect the lockdown mode status using any public API that Apple provides.

I really appreciate any help you can provide.

CodeSteger
  • 107
  • 1
  • 3

1 Answers1

4

When Lockdown mode is enabled, LDMGlobalEnabled default is set in NSGlobalDomain. You can query this with

let isLockdownModeEnabled = (UserDefaults.standard.object(forKey: "LDMGlobalEnabled") as? Bool) ?? false
JustSomeGuy
  • 3,677
  • 1
  • 23
  • 31