12345678910111213141516 |
- #import "RNNLayoutProtocol.h"
- #import "RNNLeafProtocol.h"
-
- @protocol RNNParentProtocol <RNNLayoutProtocol, UINavigationControllerDelegate, UIViewControllerTransitioningDelegate, UISplitViewControllerDelegate>
-
- @required
-
- - (UIViewController<RNNLeafProtocol> *)getLeafViewController;
-
- @optional
-
- - (void)performOnChildWillAppear:(RNNNavigationOptions *)options;
- - (void)performOnChildLoad:(RNNNavigationOptions *)options;
-
- @end
|