react-native-navigation的迁移库

RNNTitleViewHelper.h 476B

123456789101112131415161718192021222324
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. #import "RNNTitleOptions.h"
  4. @interface RNNTitleView : UIView
  5. @property (nonatomic, strong) UILabel *titleLabel;
  6. @property (nonatomic, strong) UILabel *subtitleLabel;
  7. @end
  8. @interface RNNTitleViewHelper : NSObject
  9. - (instancetype)initWithTitleViewOptions:(RNNOptions*)titleOptions
  10. subTitleOptions:(RNNOptions*)subtitleOptions
  11. viewController:(UIViewController*)viewController;
  12. -(void)setup;
  13. @end