react-native-navigation的迁移库

RNNTabBarOptions.h 457B

1234567891011121314151617
  1. #import <Foundation/Foundation.h>
  2. extern const NSInteger BLUR_TOPBAR_TAG;
  3. @interface RNNTabBarOptions : NSObject
  4. @property (nonatomic, strong) NSNumber* hidden;
  5. @property (nonatomic, strong) NSNumber* animateHide;
  6. @property (nonatomic, strong) NSString* tabBadge;
  7. @property (nonatomic, strong) NSNumber* currentTabIndex;
  8. -(instancetype)init;
  9. -(instancetype)initWithDict:(NSDictionary *)topBarOptions;
  10. -(void)mergeWith:(NSDictionary*)otherOptions;
  11. @end