react-native-navigation的迁移库

BottomTabsBasePresenter.h 539B

123456789101112131415161718192021
  1. #import <Foundation/Foundation.h>
  2. #import "RNNBasePresenter.h"
  3. #import "UITabBarController+RNNOptions.h"
  4. #import "UIViewController+LayoutProtocol.h"
  5. #import "UIViewController+Utils.h"
  6. #import "UIColor+RNNUtils.h"
  7. @interface BottomTabsBasePresenter : RNNBasePresenter
  8. - (void)applyBackgroundColor:(UIColor *)backgroundColor translucent:(BOOL)translucent;
  9. - (void)setTabBarBackgroundColor:(UIColor *)backgroundColor;
  10. - (void)setTabBarTranslucent:(BOOL)translucent;
  11. - (UITabBarController *)tabBarController;
  12. - (UITabBar *)tabBar;
  13. @end