react-native-navigation的迁移库

RNNBasePresenter.h 333B

12345678910
  1. #import <Foundation/Foundation.h>
  2. #import "RNNNavigationOptions.h"
  3. @interface RNNBasePresenter : NSObject
  4. - (void)present:(RNNNavigationOptions *)options onViewControllerDidLoad:(UIViewController *)viewController;
  5. - (void)present:(RNNNavigationOptions *)options onViewControllerWillAppear:(UIViewController *)viewController;
  6. @end