react-native-navigation的迁移库

RNNNavigationOptions.h 1007B

12345678910111213141516171819202122232425262728293031
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. #import "RNNTopBarOptions.h"
  4. extern const NSInteger BLUR_STATUS_TAG;
  5. extern const NSInteger BLUR_TOPBAR_TAG;
  6. @interface RNNNavigationOptions : NSObject
  7. @property (nonatomic, strong) NSNumber* statusBarHidden;
  8. @property (nonatomic, strong) NSNumber* screenBackgroundColor;
  9. @property (nonatomic, strong) NSString* tabBadge;
  10. @property (nonatomic, strong) id orientation;
  11. @property (nonatomic, strong) NSArray* leftButtons;
  12. @property (nonatomic, strong) NSArray* rightButtons;
  13. @property (nonatomic, strong) NSNumber* statusBarBlur;
  14. @property (nonatomic, strong) NSNumber* statusBarHideWithTopBar;
  15. @property (nonatomic, strong) NSNumber* tabBarHidden;
  16. @property (nonatomic, strong) RNNTopBarOptions* topBar;
  17. - (UIInterfaceOrientationMask)supportedOrientations;
  18. -(instancetype)init;
  19. -(instancetype)initWithDict:(NSDictionary *)navigationOptions;
  20. -(void)applyOn:(UIViewController*)viewController;
  21. -(void)mergeWith:(NSDictionary*)otherOptions;
  22. @end