react-native-navigation的迁移库

RCCTitleViewHelper.h 718B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // RCCTitleViewHelper.h
  3. // ReactNativeControllers
  4. //
  5. // Created by Ran Greenberg on 06/09/2016.
  6. // Copyright © 2016 artal. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. @interface RCCTitleView : UIView
  11. @property (nonatomic, strong) UILabel *titleLabel;
  12. @property (nonatomic, strong) UILabel *subtitleLabel;
  13. @end
  14. @interface RCCTitleViewHelper : NSObject
  15. - (instancetype)init:(UIViewController*)viewController
  16. navigationController:(UINavigationController*)navigationController
  17. title:(NSString*)title subtitle:(NSString*)subtitle
  18. titleImageData:(id)titleImageData
  19. isSetSubtitle:(BOOL)isSetSubtitle;
  20. -(void)setup:(NSDictionary*)style;
  21. @end