当使用 MDM 在同一设备(iPhone/ipad)中安装或删除任何其他应用程序时,我希望在我的应用程序中获得通知或任何类型的观察者。
就像Outpact 应用程序一样
我只是在安装了 MDM 证书的设备中尝试它。但是得到 Nil 响应
let managedConf = UserDefaults.standard.object(forKey: "com.apple.configuration.managed") as? [String:Any?]
Output : nil
我也尝试 NotificationDidChange 但它也不起作用
NotificationCenter.default.addObserver(forName: UserDefaults.didChangeNotification, object: nil, queue: OperationQueue.main, using: { note in
print(note.object)
})
还检查了这个Using MDM To Configure An Enterprise App Via NSUserDefaults 但没有得到结果
请帮助我或提出任何想法。
谢谢