美文网首页
设置融云显示的头像的大小及形状

设置融云显示的头像的大小及形状

作者: 滴答大 | 来源:发表于2016-10-20 15:55 被阅读367次

设置融云显示的头像的大小及形状

[self setConversationAvatarStyle:RC_USER_AVATAR_CYCLE];

[self setConversationPortraitSize:CGSizeMake(40, 40)];

设置字体颜色

- (void)willDisplayConversationTableCell:(RCConversationBaseCell *)cell atIndexPath:(NSIndexPath *)indexPath

{

UIImageView *headImage = [cell valueForKeyPath:@"_headerImageView"];

DebugLog(@"frame = %@",NSStringFromCGRect(headImage.frame));

headImage.image = [headImage.image circleImageWithParam:0];

RCConversationCell *RCcell = (RCConversationCell *)cell;

[RCcell.conversationTitle setFont:[UIFont fontWithName:@"STHeiti-Light.ttc" size:15]];

RCcell.messageContentLabel.textColor = [UIColor colorWithRed:153/255.0 green:153/255.0 blue:153/255.0 alpha:1];

[self  rcConversationListTableView:self.conversationListTableView cellForRowAtIndexPath:indexPath];

}

相关文章

网友评论

      本文标题:设置融云显示的头像的大小及形状

      本文链接:https://www.haomeiwen.com/subject/hbwfuttx.html