AttributedStrModel.h 853 B

1234567891011121314151617181920212223242526
  1. //
  2. // AttributedStrModel.h
  3. // HTMLAnalysisDemo
  4. //
  5. // Created by ztcj_develop_mini on 2019/3/25.
  6. // Copyright © 2019 ztcj_develop_mini. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import <UIKit/UIKit.h>
  10. typedef enum {
  11. ImageAttributedStrType = 0,
  12. TextAttributedStrType,
  13. }AttributedStrType;
  14. @interface AttributedStrModel : NSObject
  15. @property (nonatomic, assign)AttributedStrType type;
  16. @property (nonatomic, strong)NSMutableAttributedString *attributeStr; //文本内容
  17. @property (nonatomic, copy)NSString *link; //超链接
  18. @property (nonatomic, copy)NSString *imgName; //图片名称,即图片URL路径后面带的图片名称
  19. @property (nonatomic, strong)UIImage *image; //加载完成的图片对象
  20. @end