#import #import "RNNParentProtocol.h" typedef NS_ENUM(NSInteger, RNNSideMenuChildType) { RNNSideMenuChildTypeCenter, RNNSideMenuChildTypeLeft, RNNSideMenuChildTypeRight, }; @interface RNNSideMenuChildVC : UIViewController @property (readonly) RNNSideMenuChildType type; @property (readonly) UIViewController *child; @property (nonatomic, retain) RNNLayoutInfo* layoutInfo; @property (nonatomic, retain) RNNViewControllerPresenter* presenter; @property (nonatomic, strong) RNNNavigationOptions* options; @property (nonatomic, strong) RNNNavigationOptions* defaultOptions; - (instancetype)initWithLayoutInfo:(RNNLayoutInfo *)layoutInfo childViewControllers:(NSArray *)childViewControllers options:(RNNNavigationOptions *)options defaultOptions:(RNNNavigationOptions *)defaultOptions presenter:(RNNViewControllerPresenter *)presenter type:(RNNSideMenuChildType)type; @end