Files
WebApp/ShenQi/NotiCenterContentTableViewCell.m
2025-01-11 14:58:16 +08:00

35 lines
686 B
Objective-C

//
// NotiCenterContentTableViewCell.m
// ShenQi
//
// Created by twotutoo on 2025/1/11.
//
#import "NotiCenterContentTableViewCell.h"
#import "MacroDefine.h"
@implementation NotiCenterContentTableViewCell
- (void)awakeFromNib {
[super awakeFromNib];
[self setSelectionStyle:(UITableViewCellSelectionStyleNone)];
self.contentView.backgroundColor = UIColorFromRGB(0xFAFAFA);
}
-(void)setList:(PushRecordList *)list
{
_list = list;
self.contentLabel.text = self.list.content;
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end