MOReportTableViewCell.m 858 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // MOReportTableViewCell.m
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2024/1/16.
  6. //
  7. #import "MOReportTableViewCell.h"
  8. @implementation MOReportTableViewCell
  9. - (void)awakeFromNib {
  10. [super awakeFromNib];
  11. // Initialization code
  12. self.selectionStyle = UITableViewCellSelectionStyleNone;
  13. self.titleLab.font = [MOTextTools getTheFontWithSize:13.0 AndFontName:kNormalContentFontStr];
  14. }
  15. - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
  16. [super setSelected:selected animated:animated];
  17. // Configure the view for the selected state
  18. }
  19. - (void)setIsSelect:(BOOL)isSelect{
  20. _isSelect = isSelect;
  21. if(isSelect){
  22. [self.selectImg setImage:[UIImage imageNamed:@"icon_language_choose"]];
  23. }
  24. else{
  25. [self.selectImg setImage:[UIImage imageNamed:@"icon_language_no_choose"]];
  26. }
  27. }
  28. @end