开发者

How to get notified when the status bar height changes?

开发者 https://www.devze.com 2023-01-01 22:15 出处:网络
Does the OS send notif开发者_高级运维ications when the status bar height changes? For example that fat in-call status bar?Yes. Your app delegate can implement these methods:

Does the OS send notif开发者_高级运维ications when the status bar height changes? For example that fat in-call status bar?


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
0

精彩评论

暂无评论...
验证码 换一张
取 消