react-native-navigation的迁移库

RNNLayoutProtocol.h 604B

1234567891011121314151617181920
  1. #import "RNNLayoutInfo.h"
  2. #import "RNNViewControllerPresenter.h"
  3. #import "RNNLeafProtocol.h"
  4. @protocol RNNLayoutProtocol <NSObject, UINavigationControllerDelegate, UIViewControllerTransitioningDelegate, UISplitViewControllerDelegate>
  5. @required
  6. @property (nonatomic, retain) RNNBasePresenter* presenter;
  7. @property (nonatomic, retain) RNNLayoutInfo* layoutInfo;
  8. @property (nonatomic, strong) RNNNavigationOptions* options;
  9. - (UIViewController<RNNLeafProtocol, RNNLayoutProtocol> *)getCurrentChild;
  10. - (void)mergeOptions:(RNNNavigationOptions *)options;
  11. - (RNNNavigationOptions *)resolveOptions;
  12. @end