react-native-navigation的迁移库

RNNTabItemOptions.h 488B

12345678910111213141516171819
  1. #import <Foundation/Foundation.h>
  2. @interface RNNTabItemOptions : NSObject
  3. @property (nonatomic) NSUInteger tag;
  4. @property (nonatomic, strong) NSString* title;
  5. @property (nonatomic, strong) NSString* badge;
  6. @property (nonatomic, strong) NSString* testID;
  7. @property (nonatomic, strong) NSNumber* visible;
  8. @property (nonatomic, strong) NSDictionary* icon;
  9. -(instancetype)initWithDict:(NSDictionary*)tabItemDict;
  10. -(void)mergeWith:(NSDictionary *)otherOptions;
  11. -(void)resetOptions;
  12. @end