react-native-navigation的迁移库

RNNTopTabOptions.h 297B

123456789101112131415
  1. #import <Foundation/Foundation.h>
  2. extern const NSInteger BLUR_TOPBAR_TAG;
  3. @interface RNNTopTabOptions : NSObject
  4. @property (nonatomic, strong) NSString* title;
  5. -(instancetype)init;
  6. -(instancetype)initWithDict:(NSDictionary *)topBarOptions;
  7. -(void)mergeWith:(NSDictionary*)otherOptions;
  8. @end