react-native-navigation的迁移库

RNNSideMenuRightVC.m 431B

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