react-native-navigation的迁移库

RNNSideMenuChildVC.h 711B

1234567891011121314151617181920212223242526272829
  1. //
  2. // RNNSideMenuChildVC.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 "RNNRootViewProtocol.h"
  10. typedef NS_ENUM(NSInteger, RNNSideMenuChildType) {
  11. RNNSideMenuChildTypeCenter,
  12. RNNSideMenuChildTypeLeft,
  13. RNNSideMenuChildTypeRight,
  14. };
  15. @interface RNNSideMenuChildVC : UIViewController <RNNRootViewProtocol>
  16. @property (readonly) RNNSideMenuChildType type;
  17. @property (readonly) UIViewController<RNNRootViewProtocol> *child;
  18. @property (nonatomic, retain) RNNLayoutInfo* layoutInfo;
  19. -(instancetype) initWithChild:(UIViewController<RNNRootViewProtocol>*)child type:(RNNSideMenuChildType)type;
  20. @end