react-native-navigation的迁移库

RNNSideMenuChildVC.m 535B

123456789101112131415161718192021222324252627282930
  1. //
  2. // RNNSideMenuChildVC.m
  3. // ReactNativeNavigation
  4. //
  5. // Created by Ran Greenberg on 09/02/2017.
  6. // Copyright © 2017 Wix. All rights reserved.
  7. //
  8. #import "RNNSideMenuChildVC.h"
  9. @interface RNNSideMenuChildVC ()
  10. @property (readwrite) RNNSideMenuChildType type;
  11. @property (readwrite) UIViewController *child;
  12. @end
  13. @implementation RNNSideMenuChildVC
  14. -(instancetype) initWithChild:(UIViewController*)child type:(RNNSideMenuChildType)type {
  15. self = [super init];
  16. self.child = child;
  17. self.type = type;
  18. return self;
  19. }
  20. @end