react-native-navigation的迁移库

RNNRootViewProtocol.h 417B

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