What is the top bar height of iPhone X?

后端 未结 8 1599
醉梦人生
醉梦人生 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:05

    You can programmatically obtain the navigation bar's height by using safeAreaInsets on the view in the contained view controller:

    let navBarHeight = view.safeAreaInsets.top
    

    This will account for whether it's a large title navigation bar or not, and whether or not there's a search bar attached to it.

    See the safeAreaInsets documentation for more information.

提交回复
热议问题