iOS 7 | Navigation bar / Toolbar buttons very close to status bar

前端 未结 6 1004
太阳男子
太阳男子 2020-11-29 17:49

I have a problem when dragging a navigation bar or toolbar (storyboard) to my view controller.

UINavigationBar:

6条回答
  •  盖世英雄少女心
    2020-11-29 18:02

    Do these steps

    Drag the NavigationBar to your ViewController in Xib, set the ViewController as its delegate. Note that the NavigationBar should be at (0, 20)

    In ViewController, conform to the UINavigationBarDelegate

    @interface ETPViewController () 
    

    Implement this method

    - (UIBarPosition)positionForBar:(id )bar
    {
        return UIBarPositionTopAttached;
    }
    

    positionForBar tells the NavigationBar if it should extend its background upward the Status Bar

提交回复
热议问题