Does the OS send notifications when the status bar height changes? For example that fat in-call status bar?
Asked
Active
Viewed 6,335 times
1 Answers
36
Yes. Your app delegate can implement these methods:
-application:willChangeStatusBarFrame:
-application:didChangeStatusBarFrame:
and these local notifications will also be sent to the default notification center:
UIApplicationWillChangeStatusBarFrameNotification
UIApplicationDidChangeStatusBarFrameNotification