1234567891011121314151617181920212223242526272829303132333435363738 |
- //
- // 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];
-
- _bigView.layer.masksToBounds = YES;
- _bigView.layer.cornerRadius = 20/2;
- _bigView.layer.borderWidth = 1;
- _bigView.layer.borderColor = [UIColor lightGrayColor].CGColor;
-
- _smallView.layer.masksToBounds = YES;
- _smallView.layer.cornerRadius = 10/2;
- _smallView.backgroundColor = RQMianColor;
-
- _markNumLabel.backgroundColor = [UIColor redColor];
- _markNumLabel.layer.masksToBounds = YES;
- _markNumLabel.layer.cornerRadius = _markNumLabel.frame.size.height/2.0;
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- @end
|