react-native-navigation的迁移库

RNNViewController.h 351B

12345678910111213141516171819
  1. //
  2. // RNNViewController.h
  3. // ReactNativeNavigation
  4. //
  5. // Created by Ran Greenberg on 21/12/2016.
  6. // Copyright © 2016 artal. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "RCTBridge.h"
  10. @interface RNNViewController : UIViewController
  11. + (UIViewController*)controllerWithLayout:(NSDictionary *)layout bridge:(RCTBridge *)bridge;
  12. @end