BogoLogoutTextItmeCell.m 560 B

12345678910111213141516171819202122232425262728
  1. //
  2. // BogoLogoutTextItmeCell.m
  3. // BuguLive
  4. //
  5. // Created by 宋晨光 on 2021/9/29.
  6. // Copyright © 2021 xfg. All rights reserved.
  7. //
  8. #import "BogoLogoutTextItmeCell.h"
  9. @implementation BogoLogoutTextItmeCell
  10. - (void)awakeFromNib {
  11. [super awakeFromNib];
  12. // Initialization code
  13. self.dotView.layer.cornerRadius = 8 / 2;
  14. self.dotView.layer.masksToBounds = YES;
  15. }
  16. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  17. [super setSelected:selected animated:animated];
  18. // Configure the view for the selected state
  19. }
  20. @end