| 123456789101112131415161718192021222324252627282930313233343536373839 |
- //
- // MOReportTableViewCell.m
- // MiMoLive
- //
- // Created by SuperC on 2024/1/16.
- //
- #import "MOReportTableViewCell.h"
- @implementation MOReportTableViewCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
-
- self.selectionStyle = UITableViewCellSelectionStyleNone;
-
- self.titleLab.font = [MOTextTools getTheFontWithSize:13.0 AndFontName:kNormalContentFontStr];
-
- }
- - (void)setSelected:(BOOL)selected animated:(BOOL)animated {
- [super setSelected:selected animated:animated];
- // Configure the view for the selected state
- }
- - (void)setIsSelect:(BOOL)isSelect{
- _isSelect = isSelect;
-
- if(isSelect){
- [self.selectImg setImage:[UIImage imageNamed:@"icon_language_choose"]];
- }
- else{
- [self.selectImg setImage:[UIImage imageNamed:@"icon_language_no_choose"]];
- }
- }
- @end
|