react-native-navigation的迁移库

RNNRootViewProtocol.h 388B

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