Files
featherVoice/QXLive/Mine(音域)/View/亲密关系/QXIntimateNoCpCell.m
2025-11-21 16:17:05 +08:00

33 lines
850 B
Objective-C

//
// QXIntimateNoCpCell.m
// QXLive
//
// Created by 启星 on 2025/11/20.
//
#import "QXIntimateNoCpCell.h"
@implementation QXIntimateNoCpCell
+(instancetype)cellWithTableView:(UITableView *)tableView{
static NSString *cellId = @"QXIntimateNoCpCell";
QXIntimateNoCpCell *cell = [tableView dequeueReusableCellWithIdentifier:cellId];
if (!cell) {
cell = [[NSBundle mainBundle] loadNibNamed:cellId owner:nil options:nil].lastObject;
cell.backgroundColor = [UIColor clearColor];
cell.contentView.backgroundColor = [UIColor clearColor];
}
return cell;
}
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end