32 lines
794 B
Objective-C
32 lines
794 B
Objective-C
//
|
|
// QXNobilityBuyDesCell.m
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/11/7.
|
|
//
|
|
|
|
#import "QXNobilityBuyDesCell.h"
|
|
|
|
@implementation QXNobilityBuyDesCell
|
|
+(instancetype)cellWithTableView:(UITableView *)tableView{
|
|
static NSString *cellId = @"QXNobilityBuyDesCell";
|
|
QXNobilityBuyDesCell *cell = [tableView dequeueReusableCellWithIdentifier:cellId];
|
|
if (!cell) {
|
|
cell = [[NSBundle mainBundle] loadNibNamed:cellId owner:nil options:nil].lastObject;
|
|
cell.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
|