react-native-navigation的迁移库

TopBarPresenter.h 542B

1234567891011121314151617181920
  1. #import "RNNBasePresenter.h"
  2. #import "RNNTopBarOptions.h"
  3. @interface TopBarPresenter : RNNBasePresenter
  4. - (void)applyOptions:(RNNTopBarOptions *)options;
  5. - (void)applyOptionsBeforePopping:(RNNTopBarOptions *)options;
  6. - (void)mergeOptions:(RNNTopBarOptions *)options withDefault:(RNNTopBarOptions *)defaultOptions;
  7. - (instancetype)initWithNavigationController:(UINavigationController *)boundNavigationController;
  8. - (BOOL)transparent;
  9. @property (nonatomic) BOOL translucent;
  10. @property (nonatomic, strong) UIColor* backgroundColor;
  11. @end