react-native-navigation的迁移库

RNNNavigationOptions.h 569B

1234567891011121314151617181920
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. @interface RNNNavigationOptions : NSObject
  4. @property (nonatomic, strong) NSNumber* topBarBackgroundColor;
  5. @property (nonatomic, strong) NSNumber* topBarTextColor;
  6. @property (nonatomic, strong) NSNumber* statusBarHidden;
  7. @property (nonatomic, strong) NSString* title;
  8. @property (nonatomic, strong) NSString* setTabBadge;
  9. -(instancetype)init;
  10. -(instancetype)initWithDict:(NSDictionary *)navigationOptions;
  11. -(void)applyOn:(UIViewController*)viewController;
  12. -(void)mergeWith:(NSDictionary*)otherOptions;
  13. @end