react-native-navigation的迁移库

BottomTabsAppearancePresenter.m 404B

12345678910111213
  1. #import "BottomTabsAppearancePresenter.h"
  2. @implementation BottomTabsAppearancePresenter
  3. - (void)setTabBarBackgroundColor:(UIColor *)backgroundColor {
  4. UITabBarController *bottomTabs = self.tabBarController;
  5. for (UIViewController* childViewController in bottomTabs.childViewControllers) {
  6. childViewController.tabBarItem.standardAppearance.backgroundColor = backgroundColor;
  7. }
  8. }
  9. @end