react-native-navigation的迁移库

RNNSideMenuLeftVC.h 334B

123456789101112131415161718
  1. //
  2. // RNNSideMenuLeftVC.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. @interface RNNSideMenuLeftVC : UIViewController
  10. @property (readonly) UIViewController* child;
  11. -(instancetype)initWithChild:(UIViewController*)child;
  12. @end