IOS系统原生富文本

来源:互联网 发布:画地图的软件 编辑:程序博客网 时间:2024/04/29 17:40
UILabel* lbl = [[UILabel alloc] init];NSString* str = [NSString stringWithFormat:@"%@ %@", repeat, item.remember];NSMutableAttributedString* aStr = [[NSMutableAttributedString alloc] initWithString:str];[aStr addAttributes:[NSDictionary dictionaryWithObjectsAndKeys:                    [UIFont systemFontOfSize:14],                    NSFontAttributeName,                    [UIColor blackColor],                    NSForegroundColorAttributeName,                    nil]              range:[str rangeOfString:repeat]];        [aStr addAttributes:[NSDictionary dictionaryWithObjectsAndKeys:                    [UIFont systemFontOfSize:14],                    NSFontAttributeName,                    RGBCOLOR(188, 188, 188),                    NSForegroundColorAttributeName,                    nil]              range:[str rangeOfString:item.remember]];        lbl.attributedText = aStr;

0 0
原创粉丝点击