react-native-navigation的迁移库

RNNParentProtocol.h 427B

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