码迷,mamicode.com
首页 > 其他好文 > 详细

字体渐变

时间:2014-10-25 20:01:12      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:color   for   sp   on   bs   ad   size   tt   ui   

    

    UILabel * fabLab = [[UILabel alloc]initWithFrame:CGRectMake(50, 140, 200, 30)];

    NSMutableAttributedString * aText = [[NSMutableAttributedString alloc] initWithString:@"这是一个很好的东西"];

    [aText addAttribute:NSForegroundColorAttributeName value:[UIColor redColor] range:NSMakeRange(4, 2)];

// NSMakeRange(从第几个字开始 , 颜色变换的有几个字)

    fabLab.attributedText = aText;

    fabLab.font = [UIFont systemFontOfSize:14.0f];

    [self.view addSubview:fabLab];

    

label 字体变粗

    fabLab.font = [UIFont fontWithName:@"Helvetica-BoldOblique" size:17];

 

字体渐变

标签:color   for   sp   on   bs   ad   size   tt   ui   

原文地址:http://www.cnblogs.com/zgfblog/p/4050504.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!