SynopsisCollectCell.m 460 B

12345678910111213141516171819202122
  1. //
  2. // SynopsisCollectCell.m
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/6/16.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import "SynopsisCollectCell.h"
  9. @implementation SynopsisCollectCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. self.titleL.layer.cornerRadius = 4.f;
  13. self.titleL.layer.masksToBounds = YES;
  14. self.titleL.layer.borderColor = UIColorHex(0x1E7AB9).CGColor;
  15. self.titleL.layer.borderWidth = 0.5f;
  16. }
  17. @end