react-native-navigation的迁移库

RNNNavigationOptions.h 694B

12345678910111213141516171819202122
  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* setTabBadge;
  10. @property (nonatomic, strong) NSString* topBarTextFontFamily;
  11. -(instancetype)init;
  12. -(instancetype)initWithDict:(NSDictionary *)navigationOptions;
  13. -(void)applyOn:(UIViewController*)viewController;
  14. -(void)mergeWith:(NSDictionary*)otherOptions;
  15. @end