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

013-一些开发小技巧

时间:2014-10-17 13:45:12      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   sp   div   on   log   ad   

1.动态调整文字大小

NSString *dPriceString  = [NSString stringWithFormat:@"¥%d",model.price]

NSMutableAttributedString *dPrice = [[NSMutableAttributedString alloc] initWithString: dPriceString];
[dPrice addAttribute: NSFontAttributeName value: [UIFont systemFontOfSize: 12] range: NSMakeRange(0, 1)];
[dPrice addAttribute: NSFontAttributeName value: [UIFont systemFontOfSize: 18] range: NSMakeRange(1, dPriceString.length - 1)];
self.labDiscount.attributedText = dPrice;

 

013-一些开发小技巧

标签:style   blog   color   for   sp   div   on   log   ad   

原文地址:http://www.cnblogs.com/lszwhb/p/4030845.html

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