react-native-navigation的迁移库

RNNBasePresenter.m 366B

1234567891011121314
  1. #import "RNNBasePresenter.h"
  2. @implementation RNNBasePresenter
  3. - (void)present:(RNNNavigationOptions *)options onViewControllerWillAppear:(UIViewController *)viewController {
  4. [options applyOn:viewController];
  5. }
  6. - (void)present:(RNNNavigationOptions *)options onViewControllerDidLoad:(UIViewController *)viewController {
  7. [options applyOn:viewController];
  8. }
  9. @end