react-native-navigation的迁移库

RNNRootViewProtocol.h 426B

1234567891011121314151617181920
  1. #import "RNNNavigationOptions.h"
  2. #import "RNNRootViewController.h"
  3. #import "RNNLayoutInfo.h"
  4. @protocol RNNRootViewProtocol <NSObject, UINavigationControllerDelegate, UIViewControllerTransitioningDelegate, UISplitViewControllerDelegate>
  5. @optional
  6. - (void)performOnRotation:(void (^)(void))block;
  7. @required
  8. - (RNNRootViewController *)getLeafViewController;
  9. @property (nonatomic, retain) RNNLayoutInfo* layoutInfo;
  10. @end