美文网首页UILabel
富文本 指定文字处理

富文本 指定文字处理

作者: 失忆的程序员 | 来源:发表于2022-02-10 10:46 被阅读0次
    //
    NSString *strrrrrrrrs = [NSString stringWithFormat:@"勤奋的打工人,老板嘉奖10000元"];
    // 改变颜色
    NSMutableAttributedString *lightstr = [[NSMutableAttributedString alloc] initWithString:strrrrrrrrs];
    [lightstr addAttribute:NSForegroundColorAttributeName value:[UIColor whiteColor] range:NSMakeRange(lightstr.length - 1, 1)];
    // 改变字体大小
    [lightstr addAttribute:NSFontAttributeName value:[UIFont systemFontOfSize:10] range:NSMakeRange(lightstr.length - 1, 1)];
    self.label.attributedText = lightstr;

勤奋的打工人,老板嘉奖10000元 (突出元)

NSString *strUrl = [urlString stringByReplacingOccurrencesOfString:@" " withString:@""];  去掉空格

NSString *strUrl = [urlString stringByReplacingOccurrencesOfString:@" " withString:@"/"];替换字符

相关文章

网友评论

    本文标题:富文本 指定文字处理

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