默认
发表评论 0
想开发IM:买成品怕坑?租第3方怕贵?找开源自已撸?尽量别走弯路了... 找站长给点建议
如何修改文本消息中的超链接的颜色
阅读(2495) | 评论(0 收藏 淘帖
"示例代码:(https://www.rongcloud.cn/?utm_source=SEO

- (void)willDisplayMessageCell: (RCMessageBaseCell *)cell atIndexPath: (NSIndexPath *)indexPath {

     if([cell isKindOfClass:[RCTextMessageCell class]]){

          RCTextMessageCell *txtCell = (RCTextMessageCell *)cell;

          txtCell.textLabel.attributeDictionary =
                                                 @{     
                                                    @(NSTextCheckingTypeLink) : @{NSForegroundColorAttributeName : [UIColor redColor]},
                                                    @(NSTextCheckingTypePhoneNumber) : @{NSForegroundColorAttributeName : [UIColor redColor]}
                                                  };

          txtCell.textLabel.highlightedAttributeDictionary =
                                                         @{
                                                            @(NSTextCheckingTypeLink) : @{NSForegroundColorAttributeName : [UIColor redColor]},  
                                                            @(NSTextCheckingTypePhoneNumber) : @{NSForegroundColorAttributeName : [UIColor redColor]
                                                          };
    }
}"


即时通讯网 - 即时通讯开发者社区! 来源: - 即时通讯开发者社区!

上一篇:发送、接收消息,界面不及时刷新下一篇:Token 和 deviceToken 的区别
推荐方案
打赏楼主 ×
使用微信打赏! 使用支付宝打赏!

返回顶部