关于即时通讯:自定义融云会话列表-cell-选中背景

116次阅读

共计 617 个字符,预计需要花费 2 分钟才能阅读完成。

我的项目用的融云,IMKit SDK(自带 UI),然而在应用会话列表的时候,cell 选中和长按的时候默认是灰色的。设计说须要改啊,那就钻研一下如何批改吧。废话不多说,间接继承 RCConversationListViewController,而后重写以下办法 1. 以下代码是去掉选中色彩的

  • (void)willDisplayConversationTableCell:(RCConversationBaseCell )cell atIndexPath:(NSIndexPath )indexPath {
    cell.selectionStyle = UITableViewCellSelectionStyleNone;

}

2. 以下代码是重写色彩的,想配啥色请随便

  • (void)willDisplayConversationTableCell:(RCConversationBaseCell )cell atIndexPath:(NSIndexPath )indexPath {
    UIView *backView = [[UIView alloc] init];
    backView.backgroundColor = [UIColor redColor];
    cell.selectedBackgroundView = backView;

}

SDK 凋谢进去的 .h 类对办法正文写的很具体,倡议大家多看一下,这样能够疾速集成,少走弯路。也是造就集成第三方库的好习惯。融云 (www.rongcloud.cn)

正文完
 0