react-native-navigation的迁移库

RNNDotIndicatorPresenter.h 373B

123456789101112
  1. #import <Foundation/Foundation.h>
  2. #import "DotIndicatorOptions.h"
  3. #import "RNNNavigationOptions.h"
  4. @interface RNNDotIndicatorPresenter : NSObject
  5. @property(nonatomic, strong) RNNNavigationOptions* defaultOptions;
  6. - (instancetype)initWithDefaultOptions:(RNNNavigationOptions *)defaultOptions;
  7. - (void)apply:(UIViewController *)child :(DotIndicatorOptions *)options;
  8. @end