I want to make a custom navigation bar as like in the BestBuy App or like shown in the below given screenshot.
I want this type of Navigation to be always on the top of each and every viewController.
If anyone can tell me the procedure or any kind of help would be appreciated. Thanks.
navigationBar can take three view, two buttons in each side left and right , also you can add a view for the title,,
and to add the search bar
write a subclass of UINavigationBar in which you do custom drawing and add subviews as needed.
then tell your navigationController to use that class by initing it using
initWithNavigationBarClass:toolBarClass:
e.g.
instead of
initWithRootViewController
Sample