标签: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;
标签:style blog color for sp div on log ad
原文地址:http://www.cnblogs.com/lszwhb/p/4030845.html