In our native iPad app, we need a few customizations to be done to the tab bar namely:
- We want the height of the tab bar to be 54px,
- The highlight color of the tab bar icons when selected needs to be yellow
- There has to be a slight shadow at the top edge of the tab bar.
Apple's documentation states that UITabBarController is not meant to be subclassed. Please advise what would be the best way to achieve the above customization if I cannot subclass UITabBarController.
Thanks.