What is the top bar height of iPhone X?

后端 未结 8 1598
醉梦人生
醉梦人生 2020-12-02 08:40

I would like to know exact height of top bar of iPhone X. Could you please mention the status bar and navigation bar height of iPhone X. Please help me.

8条回答
  •  一向
    一向 (楼主)
    2020-12-02 09:08

    If you're using a uiwindow and you need to know the top bar height you can use this:

    guard let keyWindow = UIApplication.shared.keyWindow else { return }
    
    let navBarHeight = keyWindow.safeAreaInsets.top
    
    print("navBarHeight:" , navBarHeight)
    

    I got the idea from @Paolo's answer

提交回复
热议问题