react-native-navigation的迁移库

RNNSideMenuController.h 797B

1234567891011121314151617181920212223242526272829
  1. //
  2. // RNNSideMenuController.h
  3. // ReactNativeNavigation
  4. //
  5. // Created by Ran Greenberg on 09/02/2017.
  6. // Copyright © 2017 Wix. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RNNSideMenuChildVC.h"
  10. #import "MMDrawerController.h"
  11. #import "RNNRootViewProtocol.h"
  12. @interface RNNSideMenuController : UIViewController <RNNRootViewProtocol>
  13. @property (readonly) RNNSideMenuChildVC *center;
  14. @property (readonly) RNNSideMenuChildVC *left;
  15. @property (readonly) RNNSideMenuChildVC *right;
  16. @property (readonly) MMDrawerController *sideMenu;
  17. @property (nonatomic, retain) RNNLayoutInfo* layoutInfo;
  18. -(instancetype)initWithControllers:(NSArray*)controllers;
  19. -(void)showSideMenu:(MMDrawerSide)side animated:(BOOL)animated;
  20. -(void)hideSideMenu:(MMDrawerSide)side animated:(BOOL)animated;
  21. @end