ChatAttachment.h 722 B

12345678910111213141516171819202122232425
  1. //
  2. // ChatAttachment.h
  3. // TIMChat
  4. //
  5. // Created by AlexiChen on 16/3/31.
  6. // Copyright © 2016年 AlexiChen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. // 将TIMElem转换成对应的富文本进行显示
  10. typedef void (^ChatGetImageBlock)(UIImage *image);
  11. @interface ChatImageAttachment : NSTextAttachment
  12. {
  13. @protected
  14. NSString *_tag; // 要显示的文本内容
  15. TIMElem *_elemRef; // 要显示的Element
  16. }
  17. @property (nonatomic, strong) TIMElem *elemRef;
  18. @property (nonatomic, strong) NSString *tag; // 用于替换显示的tag
  19. - (instancetype)initWith:(TIMElem *)elem;
  20. @end