TUIConversationCell Class Reference
| Inherits from | TCommonTableViewCell : UITableViewCell | 
|---|---|
| Declared in | TUIConversationCell.h TUIConversationCell.m  | 
Overview
【模块名称】消息列表会话单元(TUIConversationCell)
【功能说明】在消息列表界面中,显示单个会话的预览信息。 会话单元所展示的会话信息包括: 1、头像信息(用户头像/群头像) 2、会话标题(用户昵称/群名称) 3、会话消息概览(展示最新的一条的消息内容) 4、未读消息数(若有未读消息的话) 5、会话时间(最新消息的收到/发出时间)
Other Methods
– initWithStyle:reuseIdentifier:
	- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier– fillWithData:
	填充数据 根据传入的数据源,对会话单元中的各个属性进行赋值。 本函数中还包含了一些会话单元的初始化操作。
- (void)fillWithData:(TUIConversationCellData *)convDataDeclared In
TUIConversationCell.h
Other Methods
  headImageView
	头像视图。 当该会话为1对1好友会话时,头像视图为用户头像。 当该会话为群聊时,头像视图为群头像。
@property (nonatomic, strong) UIImageView *headImageViewDeclared In
TUIConversationCell.h
  titleLabel
	会话标题 当该会话为1对1好友会话时,标题为好友的备注,若对应好友没有备注的话,则显示好友 ID。 当该会话为群聊时,标题为群名称。
@property (nonatomic, strong) UILabel *titleLabelDeclared In
TUIConversationCell.h
  subTitleLabel
	会话消息概览(下标题) 概览负责显示对应会话最新一条消息的内容/类型。 当最新的消息为文本消息/系统消息时,概览的内容为消息的文本内容。 当最新的消息为多媒体消息时,概览的内容为对应的多媒体形式,如:“动画表情” / “[文件]” / “[语音]” / “[图片]” / “[视频]” 等。 若当前会话有草稿时,概览内容为:“[草稿]XXXXX”,XXXXX为草稿内容。
@property (nonatomic, strong) UILabel *subTitleLabelDeclared In
TUIConversationCell.h
  timeLabel
	时间标签 负责在会话单元中显示最新消息的接收/发送时间。 对于当天的消息,以 “HH:MM”的格式显示时间。 对于非当天的消息,则显示消息收/发当天为星期几。
@property (nonatomic, strong) UILabel *timeLabelDeclared In
TUIConversationCell.h
  unReadView
	未读视图 如果当前会话有消息未读的话,则在会话单元右侧显示红底白字的原型图标来展示未读数量。
@property (nonatomic, strong) TUnReadView *unReadViewDeclared In
TUIConversationCell.h
  convData
	会话消息数据源 存储会话单元所需的一系列信息与数据。包含会话头像、会话类型(1对1/群组)、会话标题、未读计数等等。 数据源还会负责部分数据的获取与处理。 数据源的详细信息请参考 \Section\Conversation\Cell\TUIConversationCellData.h
@property (atomic, strong) TUIConversationCellData *convDataDeclared In
TUIConversationCell.h