JCHATMessageContentView.h 988 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // JCHATMessageContentView.h
  3. // JChat
  4. //
  5. // Created by HuminiOS on 15/11/2.
  6. // Copyright © 2015年 HXHG. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ChatImageBubble.h"
  10. #import "JCHATMessageTextView.h"
  11. @interface JCHATMessageContentView :UIImageView
  12. @property(assign, nonatomic)BOOL isReceivedSide;
  13. @property (nonatomic,strong)UIImageView *mapIV; //地址截图
  14. @property(nonatomic,strong)UIImageView *imageViewAnntation; //大头针
  15. @property(strong, nonatomic)UILabel *textContent;
  16. @property(nonatomic,strong)UILabel *infoL; //当消息为定位类型时用作显示详情
  17. @property(strong, nonatomic)UIImageView *voiceConent;
  18. @property(strong, nonatomic)JMSGMessage *message;
  19. //rk20201030
  20. @property(nonatomic,strong)JCHATMessageTextView *passRKTextView;
  21. - (void)setMessageContentWith:(JMSGMessage *)message;
  22. - (void)setMessageContentWith:(JMSGMessage *)message handler:(void(^)(NSUInteger messageMediaDataLength))block;
  23. @end