react-native-navigation的迁移库

RNNLayoutProtocol.h 502B

12345678910111213141516
  1. #import "RNNLayoutInfo.h"
  2. #import "RNNBasePresenter.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> *)getLeafViewController;
  10. @end