react-native-navigation的迁移库

RNNRootViewProtocol.h 475B

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