如何自定义会话列表未读消息数显示红点,不显示未读数目?

创建一个类继承于 RCConversationListViewController, 在回调方法 willDisplayConversationTableCell:atIndexPath: 中对 RCConversationCell 的 isShowNotificationNumber 属性进行设置

当 isShowNotificationNumber 为 YES 时,该会话的 cell 会显示具体的未读数,当该属性为 NO 时,该会话的 cell 有未读消息时只显示红点。属性默认值为 YES。具体属性如下:

/*!
 会话中有未读消息时,是否在头像右上角的 bubbleTipView 中显示数字
 @discussion 默认值为 YES。
 您可以在RCConversationListViewController的willDisplayConversationTableCell:atIndexPath:回调中进行设置。
 */
@property(nonatomic, assign) BOOL isShowNotificationNumber;