On navigating to any view in an app which has navigation controller implemented, it shows a back button to go to the previous view. Is there a way I can use custom image instead of the default one?
|
Yes you can. You can control how the standard back button will look when another view controller is pushed on top of a given view controller by setting its navigation item's back bar button item (you can customize the title or use an image):
Note: you configure this in a "parent" view controller that may have other view controller(s) pushed on top of it. The configuration is done in the "parent" and the appearance of the back button is changed when some view controller is on top. Tapping the back button brings you back as expected. You can also create your own UIBarButtonItem and set it as the leftButtonItem on the navigation bar on the current view controller:
Note: in this case, the back / left bar button item is changed for the current view controller (when it is on top). You must implement the |
||||
|
|
|
I found that non of the solutions actually solved the BACK UIBarButton and also provided its hidden behavior if the view controller is root.
|
|||
|
|
|
It almost works like a back button. With the exception of the transition animation (after the button is tapped and current view is popped off the navigation to the right). The right way is to make a category.
|
|||
|
|