react-native-navigation的迁移库

RNNParentProtocol.h 415B

12345678910111213
  1. #import "RNNLayoutProtocol.h"
  2. #import "RNNLeafProtocol.h"
  3. @protocol RNNParentProtocol <RNNLayoutProtocol, UINavigationControllerDelegate, UIViewControllerTransitioningDelegate, UISplitViewControllerDelegate>
  4. @required
  5. - (UIViewController<RNNLeafProtocol> *)getLeafViewController;
  6. - (void)performOnChildWillAppear:(RNNNavigationOptions *)options;
  7. - (void)performOnChildLoad:(RNNNavigationOptions *)options;
  8. @end