react-native-navigation的迁移库

RNNNavigationController.h 326B

123456789101112
  1. #import <UIKit/UIKit.h>
  2. #import "RNNRootViewProtocol.h"
  3. @interface RNNNavigationController : UINavigationController <RNNRootViewProtocol>
  4. - (instancetype)initWithOptions:(RNNNavigationOptions *)options;
  5. @property (nonatomic, strong) NSString* componentId;
  6. @property (nonatomic, strong) RNNNavigationOptions* options;
  7. @end