如何使得Label里的字符有不同的颜色
2个回答
推荐于2016-12-03 · 知道合伙人互联网行家
关注
展开全部
[upload=1] [upload=1] iOS6.0有一个attributedText属性,可以参考。再或者就是drawrect自己绘制吧
NSString*string = @"如何使得Label里的字符有不同的颜色?";
NSRange range = [string rangeOfString: @"Label"];
NSMutableAttributedString*attribute = [[NSMutableAttributedStringalloc] initWithString: string];
[attribute addAttributes: @{NSForegroundColorAttributeName: [UIColorredColor]}range: range];
[attribute addAttributes: @{NSForegroundColorAttributeName: [UIColorgreenColor]}range: NSMakeRange(0, range.location)];
[attribute addAttributes: @{NSForegroundColorAttributeName: [UIColorcyanColor]}range: NSMakeRange(range.location+ range.length, 5)];
UILabel *label = [[UILabel alloc] initWithFrame: CGRectMake(0.0f, 100.0f, 320.0f, 100.0f)];
[label setText: string];
[label setAttributedText: attribute];
NSString*string = @"如何使得Label里的字符有不同的颜色?";
NSRange range = [string rangeOfString: @"Label"];
NSMutableAttributedString*attribute = [[NSMutableAttributedStringalloc] initWithString: string];
[attribute addAttributes: @{NSForegroundColorAttributeName: [UIColorredColor]}range: range];
[attribute addAttributes: @{NSForegroundColorAttributeName: [UIColorgreenColor]}range: NSMakeRange(0, range.location)];
[attribute addAttributes: @{NSForegroundColorAttributeName: [UIColorcyanColor]}range: NSMakeRange(range.location+ range.length, 5)];
UILabel *label = [[UILabel alloc] initWithFrame: CGRectMake(0.0f, 100.0f, 320.0f, 100.0f)];
[label setText: string];
[label setAttributedText: attribute];
2018-06-26 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
label只能显示一样的颜色,但是可以通过其他方法可以设置,定义多个label拼接,如:
Label1.Text="<font style='color: #FF0000'>
内容1:</font><font style='color: #0000FF'>
内容2</font>";
内容1和内容2为要改变颜色的字
Label1.Text="<font style='color: #FF0000'>
内容1:</font><font style='color: #0000FF'>
内容2</font>";
内容1和内容2为要改变颜色的字
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询