react-native-navigation的迁移库

RNNViewControllerPresenter.h 439B

1234567891011121314
  1. #import "RNNBasePresenter.h"
  2. #import "RNNNavigationButtons.h"
  3. #import "RNNReactComponentRegistry.h"
  4. @interface RNNViewControllerPresenter : RNNBasePresenter
  5. - (instancetype)initWithcomponentRegistry:(RNNReactComponentRegistry *)componentRegistry;
  6. - (void)renderComponents:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock;
  7. @property (nonatomic, strong) RNNNavigationButtons* navigationButtons;
  8. @end