StrongCell.m 582 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // StrongCell.m
  3. // jiaPei
  4. //
  5. // Created by apple on 16/1/13.
  6. // Copyright © 2016年 JCZ. All rights reserved.
  7. //
  8. #import "StrongCell.h"
  9. @implementation StrongCell
  10. - (void)awakeFromNib
  11. {
  12. [super awakeFromNib];
  13. _indexLabel.layer.masksToBounds = YES;
  14. _indexLabel.layer.cornerRadius = 10;
  15. _rightIndexLabel.layer.masksToBounds = YES;
  16. _rightIndexLabel.layer.cornerRadius = 10;
  17. }
  18. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  19. [super setSelected:selected animated:animated];
  20. // Configure the view for the selected state
  21. }
  22. @end