Custom UINavigationController UINavigationBar

后端 未结 4 1674
眼角桃花
眼角桃花 2021-02-02 04:24

Basically I want a custom UINavigationBar. I don\'t want it to be \"translucent\" or anything, like the pictures app.

I basically want to completely remove

4条回答
  •  执笔经年
    2021-02-02 04:49

    To see through the UINavigationBar, if you choose to have one, just:

    self.navigationController.navigationBar.translucent=YES;
    

    You'll have to change the tint/color to match the background if you want it to appear like the image you posted.

提交回复
热议问题