react-native-navigation的迁移库

RNNDotIndicatorPresenter.h 588B

1234567891011121314151617
  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. - (void)bottomTabsDidLayoutSubviews:(UITabBarController *)bottomTabs;
  9. - (void)mergeOptions:(RNNNavigationOptions *)options resolvedOptions:(RNNNavigationOptions *)resolvedOptions child:(UIViewController *)child;
  10. @end