react-native-navigation的迁移库

RCCExternalViewControllerProtocol.h 428B

123456789101112131415161718
  1. //
  2. // ExternalViewControllerProtocol.h
  3. // ReactNativeControllers
  4. //
  5. // Created by Artal Druk on 01/06/2016.
  6. // Copyright © 2016 artal. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "RCCViewController.h"
  10. @protocol RCCExternalViewControllerProtocol <NSObject>
  11. @property (nullable, nonatomic, weak) id <RCCViewControllerDelegate> controllerDelegate;
  12. -(void)setProps:(nullable NSDictionary*)props;
  13. @end