123456789101112131415161718192021222324252627 |
-
-
-
-
-
-
-
-
- #import <UIKit/UIKit.h>
- #import "RNNRootViewProtocol.h"
-
- typedef NS_ENUM(NSInteger, RNNSideMenuChildType) {
- RNNSideMenuChildTypeCenter,
- RNNSideMenuChildTypeLeft,
- RNNSideMenuChildTypeRight,
- };
-
-
- @interface RNNSideMenuChildVC : UIViewController <RNNRootViewProtocol>
-
- @property (readonly) RNNSideMenuChildType type;
- @property (readonly) UIViewController *child;
-
- -(instancetype) initWithChild:(UIViewController*)child type:(RNNSideMenuChildType)type;
-
- @end
|