react-native-navigation的迁移库

RNNLayoutProtocol.h 447B

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