I am having an issue when the control center appears on iOS 7. Basically, the applicationDidEnterBackground is fired when the control center appears.
However in my method, I would like to detect if it's just the control center opening or the notification center since I would treat the applicationDidEnterBackground differently in that state.
Any help would be appreciated.
applicationDidEnterBackground
is the only to detect if the control center is shown. There is no specific information whether it is a phone call, notification or control center is shown. – ArtieartifactapplicationDidEnterBackground
should not be called at all when the notification/control center appears -applicationWillResignActive
is called in this case – BlyapplicationDidEnterBackground
also will not be called when you receive a phone call. – Artieartifact