I have a class that I have created to do all the work for customizing appearances. The class is UIAppearance
delegate.
UI customization currently affects,
- Navigation Bar
- Search Bar
- Tab bar
All these elements will not vary with Views
as I can not forsee a situation where I might have different style for any of those.
Where and How can I place it to be available application wide and such that I don't have to invoke those methods from everywhere (One time call to affect UI tweaks) ?
- by subclassing ?
- is AppDelegate a good candidate for this ?
- importing the subject class and manually invoking the methods
Is it possible to make one time calls for these customizations ?