WillDoCell.m 916 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. //
  2. // WillDoCell.m
  3. // LNManager
  4. //
  5. // Created by EchoShacolee on 2017/4/19.
  6. // Copyright © 2017年 lee. All rights reserved.
  7. //
  8. #import "WillDoCell.h"
  9. @implementation WillDoCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. _bigView.layer.masksToBounds = YES;
  13. _bigView.layer.cornerRadius = 20/2;
  14. _bigView.layer.borderWidth = 1;
  15. _bigView.layer.borderColor = [UIColor lightGrayColor].CGColor;
  16. _smallView.layer.masksToBounds = YES;
  17. _smallView.layer.cornerRadius = 10/2;
  18. _smallView.backgroundColor = RQMianColor;
  19. _markNumLabel.backgroundColor = [UIColor redColor];
  20. _markNumLabel.layer.masksToBounds = YES;
  21. _markNumLabel.layer.cornerRadius = _markNumLabel.frame.size.height/2.0;
  22. }
  23. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  24. [super setSelected:selected animated:animated];
  25. // Configure the view for the selected state
  26. }
  27. @end