react-native-navigation的迁移库

RNNNavigationOptions.h 1.1KB

1234567891011121314151617181920212223242526272829303132
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. extern const NSInteger BLUR_STATUS_TAG;
  4. @interface RNNNavigationOptions : NSObject
  5. @property (nonatomic, strong) NSNumber* topBarBackgroundColor;
  6. @property (nonatomic, strong) NSNumber* topBarTextColor;
  7. @property (nonatomic, strong) NSNumber* statusBarHidden;
  8. @property (nonatomic, strong) NSString* title;
  9. @property (nonatomic, strong) NSNumber* screenBackgroundColor;
  10. @property (nonatomic, strong) NSString* topBarTextFontFamily;
  11. @property (nonatomic, strong) NSNumber* topBarHidden;
  12. @property (nonatomic, strong) NSNumber* topBarHideOnScroll;
  13. @property (nonatomic, strong) NSNumber* topBarButtonColor;
  14. @property (nonatomic, strong) NSNumber* topBarTranslucent;
  15. @property (nonatomic, strong) NSString* tabBadge;
  16. @property (nonatomic, strong) NSNumber* topBarTextFontSize;
  17. @property (nonatomic, strong) NSNumber* topBarNoBorder;
  18. @property (nonatomic, strong) NSNumber* statusBarBlur;
  19. -(instancetype)init;
  20. -(instancetype)initWithDict:(NSDictionary *)navigationOptions;
  21. -(void)applyOn:(UIViewController*)viewController;
  22. -(void)mergeWith:(NSDictionary*)otherOptions;
  23. @end