react-native-navigation的迁移库

RNNNavigationOptions.h 928B

12345678910111213141516171819202122232425262728
  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* setTabBadge;
  15. -(instancetype)init;
  16. -(instancetype)initWithDict:(NSDictionary *)navigationOptions;
  17. -(void)applyOn:(UIViewController*)viewController;
  18. -(void)mergeWith:(NSDictionary*)otherOptions;
  19. @end