Reputation: 1081
Let us say I used some code to change the appearance
property of the UINavigationBar
including the UIBarButtonItems
in my app. Is there any simple way to reset the appearance for some specific views to the default iOS style?
Upvotes: 0
Views: 852
Reputation: 4089
A couple of options I can think of.
I think your best bet may be to create a custom object (extend the original NavBar etc), save its original appearance variables (color, font etc) and add a reset option to be called by the controller.
Upvotes: 1