react-native-navigation的迁移库

RNNRootViewProtocol.h 437B

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