立即注册 登录
即时通讯网 返回首页

Ryun的个人空间 http://www.52im.net/?28523 [收藏] [复制] [RSS]

日志

如何修改文本消息中的超链接的颜色

已有 164 次阅读2023-08-30 21:56 |个人分类:IM知识

"示例代码:(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]
                                                          };
    }
 }"

0 推荐

评论 (0 个评论)

facelist

您需要登录后才可以评论 登录 | 立即注册

返回顶部