123456789101112131415161718192021222324252627 |
- //
- // HomeWeiCousreCollectCell.m
- // smartRhino
- //
- // Created by niuzhen on 2020/5/18.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import "HomeWeiCousreCollectCell.h"
- @implementation HomeWeiCousreCollectCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setDataWithTitle:(NSString *)title isSelect:(BOOL)select
- {
- NSMutableAttributedString *attributedString = [[NSMutableAttributedString alloc] initWithString:title];
- NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc] init];
- [paragraphStyle setLineSpacing:12];
- [attributedString addAttribute:NSParagraphStyleAttributeName value:paragraphStyle range:NSMakeRange(0, [title length])];
- [attributedString addAttribute:NSForegroundColorAttributeName value:select ? UIColorHex(0xFF6429) : UIColorHex(0x222222) range:NSMakeRange(0, [title length])];
- self.titleL.attributedText = attributedString;
- }
- @end
|