react-native-navigation的迁移库

RNNRootViewProtocol.h 364B

123456789101112131415161718
  1. #import "RNNNavigationOptions.h"
  2. @protocol RNNRootViewProtocol <NSObject, UINavigationControllerDelegate, UIViewControllerTransitioningDelegate>
  3. @optional
  4. - (void)mergeOptions:(NSDictionary*)options;
  5. - (BOOL)isCustomViewController;
  6. @required
  7. - (BOOL)isCustomTransitioned;
  8. - (BOOL)isAnimated;
  9. - (RNNNavigationOptions*)options;
  10. - (NSString *)componentId;
  11. @end