增加换肤功能
This commit is contained in:
31
QXLive/Mine(音域)/View/编辑/QXUserInfoEditCell.m
Normal file
31
QXLive/Mine(音域)/View/编辑/QXUserInfoEditCell.m
Normal file
@@ -0,0 +1,31 @@
|
||||
//
|
||||
// QXUserInfoEditCell.m
|
||||
// QXLive
|
||||
//
|
||||
// Created by 启星 on 2025/5/20.
|
||||
//
|
||||
|
||||
#import "QXUserInfoEditCell.h"
|
||||
|
||||
@implementation QXUserInfoEditCell
|
||||
+(instancetype)cellWithTableView:(UITableView *)tableView{
|
||||
static NSString *cellId = @"QXUserInfoEditCell";
|
||||
QXUserInfoEditCell *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
|
||||
Reference in New Issue
Block a user