tags:

views:

31

answers:

1

Does the OS send notifications when the status bar height changes? For example that fat in-call status bar?

+2  A: 

Yes. Your app delegate can implement these methods:

  • -application:willChangeStatusBarFrame:
  • -application:didChangeStatusBarFrame:

and these local notifications will also be sent:

  • UIApplicationWillChangeStatusBarFrameNotification
  • UIApplicationDidChangeStatusBarFrameNotification
KennyTM