14

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

dontWatchMyProfile
  • 45,440
  • 50
  • 177
  • 260

1 Answers1

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
hashier
  • 4,670
  • 1
  • 28
  • 41
kennytm
  • 510,854
  • 105
  • 1,084
  • 1,005