react-native-navigation的迁移库

RNNNavigationOptions.h 495B

123456789101112131415161718
  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. -(instancetype)initWithDict:(NSDictionary *)navigationOptions;
  9. -(void)applyOn:(UIViewController*)viewController;
  10. -(void)mergeWith:(NSDictionary*)otherOptions;
  11. @end