I have a UINavigationController and I have to keep the the default back button “the back arrow style” I just want to ask if I can change the back button action without build new one and change its style
I have a UINavigationController and I have to keep the the default back button
Share
AFAIK you cannot change the action of the default back button itself but you can place a UIBarButtonItem as leftBarButtonItem there and assign your own action.
If there is a leftBarButtonItem defined then this is shown and not the default back button.
However, keep the GUI guidelines in mind when doing tricks like this.