Files
featherVoice/QXLive/Mine(音域)/View/钱包/QXWalletHomeCell.m
2025-08-08 10:49:36 +08:00

32 lines
774 B
Objective-C

//
// QXWalletHomeCell.m
// QXLive
//
// Created by 启星 on 2025/5/16.
//
#import "QXWalletHomeCell.h"
@implementation QXWalletHomeCell
+(instancetype)cellWithTableView:(UITableView *)tableView{
static NSString *cellId = @"QXWalletHomeCell";
QXWalletHomeCell *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