react-native-navigation的迁移库

RCCTabBarController.h 539B

12345678910111213
  1. #import <UIKit/UIKit.h>
  2. #import <React/RCTBridge.h>
  3. @interface RCCTabBarController : UITabBarController <UITabBarDelegate>
  4. - (instancetype)initWithProps:(NSDictionary *)props children:(NSArray *)children globalProps:(NSDictionary*)globalProps bridge:(RCTBridge *)bridge;
  5. - (void)performAction:(NSString*)performAction actionParams:(NSDictionary*)actionParams bridge:(RCTBridge *)bridge completion:(void (^)(void))completion;
  6. + (UIImage *)image:(UIImage*)image withColor:(UIColor *)color1;
  7. @property (nonatomic) BOOL tabBarHidden;
  8. @end