react-native-navigation的迁移库

RNNNavigationOptions.h 1.0KB

123456789101112131415161718192021222324252627282930
  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) NSNumber* screenBackgroundColor;
  9. @property (nonatomic, strong) NSString* topBarTextFontFamily;
  10. @property (nonatomic, strong) NSNumber* topBarHidden;
  11. @property (nonatomic, strong) NSNumber* topBarHideOnScroll;
  12. @property (nonatomic, strong) NSNumber* topBarButtonColor;
  13. @property (nonatomic, strong) NSNumber* topBarTranslucent;
  14. @property (nonatomic, strong) NSString* tabBadge;
  15. @property (nonatomic, strong) NSNumber* topBarTextFontSize;
  16. @property (nonatomic, strong) NSNumber* topBarNoBorder;
  17. -(instancetype)init;
  18. -(instancetype)initWithDict:(NSDictionary *)navigationOptions;
  19. -(void)applyOn:(UIViewController*)viewController;
  20. -(void)mergeWith:(NSDictionary*)otherOptions;
  21. @end