react-native-navigation的迁移库

RNNTitleViewHelper.h 604B

1234567891011121314151617181920212223242526
  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. @property (nonatomic, strong) RNNTitleOptions *titleOptions;
  10. @property (nonatomic, strong) RNNSubtitleOptions *subtitleOptions;
  11. - (instancetype)initWithTitleViewOptions:(RNNOptions*)titleOptions
  12. subTitleOptions:(RNNOptions*)subtitleOptions
  13. viewController:(UIViewController*)viewController;
  14. -(void)setup;
  15. @end