react-native-navigation的迁移库

UITabBarController+RNNOptions.h 497B

12345678910111213141516171819202122
  1. #import <UIKit/UIKit.h>
  2. @interface UITabBarController (RNNOptions)
  3. - (void)rnn_setCurrentTabIndex:(NSUInteger)currentTabIndex;
  4. - (void)rnn_setCurrentTabID:(NSString *)tabID;
  5. - (void)rnn_setTabBarTestID:(NSString *)testID;
  6. - (void)rnn_setTabBarBackgroundColor:(UIColor *)backgroundColor;
  7. - (void)rnn_setTabBarStyle:(UIBarStyle)barStyle;
  8. - (void)rnn_setTabBarTranslucent:(BOOL)translucent;
  9. - (void)rnn_setTabBarHideShadow:(BOOL)hideShadow;
  10. - (void)rnn_setTabBarVisible:(BOOL)visible;
  11. @end