I need to customize my navigation bar in my xcode project in such a way (as shown in figure below)
that there is an increase in height of navigation bar, and there is a search bar in the middle and a home button to the left and a help button to the right.country and account access on the the top right aside to the help button. I want to make this navigation bar available in all screens in my application.
Please ask me if you need anymore information regarding the question.
Try using following steps:
- Hide your navigation bar.
- Add UIView with same frame as Navigation bar (0, 0, 320, 64)
- Use UIButton instead of BarButtonItem and UILabel in place of navigation titlebar
- And your customised navigation bar design is ready!!
- Now set actions on Left button to perform pop operation.
Try and let me know, if you can’t do it.