所以我需要这个,我得到了一些解码的值。
我正在查看另一个_UIApplicationWillAddDeactivationReasonNotification
具有相同值键的类似通知_UIApplicationDeactivationReasonUserInfoKey
它们在这里(对于 ios6/7):
// notification/control center overlay
kDeactivationReasonControlOverlay = 1,
// double tapped for the task manager mode
kDeactivationReasonTaskManager = 2,
// app is going inactive, eg: locked, enter background, power off screen, phone call, voice control (not siri)
kDeactivationReasonLockScreen = 3,
// system alerts, eg: privacy permissions, IAP dialogs
kDeactivationReasonSystemAlert = 5,
// siri overlay
kDeactivationReasonSiriOverlay = 6,
但是我没有可以重现 4 的测试用例。而且我不知道 0 或 6 以上的值是否是有效值,如果有人知道请发表评论!