react-native-navigation的迁移库

RNNNavigationController.h 556B

12345678910111213141516
  1. #import <UIKit/UIKit.h>
  2. #import "RNNParentProtocol.h"
  3. #import "RNNNavigationControllerPresenter.h"
  4. #import "UINavigationController+RNNOptions.h"
  5. @interface RNNNavigationController : UINavigationController <RNNParentProtocol>
  6. @property (nonatomic, retain) RNNLayoutInfo* layoutInfo;
  7. @property (nonatomic, retain) RNNNavigationControllerPresenter* presenter;
  8. @property (nonatomic, strong) RNNNavigationOptions* options;
  9. @property (nonatomic, strong) RNNNavigationOptions* defaultOptions;
  10. - (void)setTopBarBackgroundColor:(UIColor *)backgroundColor;
  11. @end