Let’s say my main view controller will be a tab bar with misc sub view controllers (i.e the first will be navigation controller, the second will a subclass of uiviewcontroller, etc)
Now I want to add a static header view (will contain at least a logo uiimageview like websites)
so what is the best practice to achieve this?
EDIT: As Mark Adams explains in the comments, below, this is not a good strategy. I’ll leave it as an note on what not to do.
“Best practice” is a dicey term, but what immediately comes to mind for me is to make your
UITabBarControllerthe root and only view controller of a parentUINavigationController. Then you can put whatever logoUIImageViewyou like in the navigation bar.