In my iOS app I want to know when the control or the notification center appears. Is there a notification specifically for this available? The notifications for applicationWillResignActive
and applicationDidBecomeActive
do not help in my situation because they are not specific enough.
Asked
Active
Viewed 2,996 times
6

Jan Deinhard
- 19,645
- 24
- 81
- 137
-
1No there is not notification available to detect if the user opens the control/notification center. You only indication is the `applicationWillResignActive`. – rckoenes Apr 15 '15 at 08:33
-
@rckoenes thanks for the info. Do you know if it is possible to detect if the control/notification center is open. Then I could test for it in `applicationWillResignActive`. – Jan Deinhard Apr 15 '15 at 10:16
-
1No this is not possible. – rckoenes Apr 15 '15 at 10:56
-
Maybe this helps: http://stackoverflow.com/a/29144992/470964 – Sebastian May 08 '15 at 16:51