react-native-navigation的迁移库

RNNViewControllerPresenter.m 295B

1234567891011121314
  1. #import "RNNViewControllerPresenter.h"
  2. @implementation RNNViewControllerPresenter
  3. - (void)presentOn:(UIViewController *)viewController {
  4. [self.options applyOn:viewController];
  5. if ([self.delegate respondsToSelector:@selector(optionsUpdated)]) {
  6. [self.delegate optionsUpdated];
  7. }
  8. }
  9. @end