iOS, customising top and bottom bar inside UINavigationController

Written by - Saumya

13 February 2014

This may seem a difficult or simple task, depending upon what and how you want to do it.
UINavigationController is simply a controller to manage all the UIViewControllers inside it. Now, customising each and every UIViewController could be done by code or InterfaceBuilder, depending upon what you want to achieve. We will be seeing here, as to how, to customise the Navigation bar (top bar) and the Tab bar (bottom bar) of the respective UIViewController. These are the references to look for while customising UIViewController through InterfaceBuilder.
Hide the Tab bar (bottom bar)

The above setting is on the same [UIViewController][2]. To display custom text on the back button in a UIViewController, look for the setting as below Just remember that the above setting is done on the `previous` [UIViewController][2] for the next [UIViewController][2], `its tricky` that way. Now the code reference for [UIViewController][2] is as below.

Happy customising.