12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // WillDoCell.m
- // LNManager
- //
- // Created by EchoShacolee on 2017/4/19.
- // Copyright © 2017年 lee. All rights reserved.
- //
- #import "WillDoCell.h"
- @implementation WillDoCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- _markNumLabel.backgroundColor = [UIColor redColor];
- _markNumLabel.layer.masksToBounds = YES;
- _markNumLabel.layer.cornerRadius = _markNumLabel.frame.size.height/2.0;
- }
- -(void)setImageName:(NSString *)imageName{
-
- UIImage *image = [UIImage imageNamed:imageName];
- // 1> 生成文本附件
- NSTextAttachment *textAttach = [[NSTextAttachment alloc] init];
- textAttach.image = image;
- textAttach.bounds = CGRectMake(0, 0, _shortTitleLabel.frame.size.width, _shortTitleLabel.frame.size.height);
- // 2> 使用文本附件创建属性文本
- NSAttributedString *strA = [NSAttributedString attributedStringWithAttachment:textAttach];
- _shortTitleLabel.attributedText = strA;
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|