react-native-navigation的迁移库

RNNComponentPresenter.h 473B

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