Files
WebApp/ShenQi/InviteRecordsTableViewCell.m
2024-12-20 17:49:45 +08:00

25 lines
487 B
Objective-C

//
// InviteRecordsTableViewCell.m
// ShenQi
//
// Created by Yao on 2024/11/6.
//
#import "InviteRecordsTableViewCell.h"
@implementation InviteRecordsTableViewCell
- (void)awakeFromNib {
[super awakeFromNib];
// Initialization code
[self setSelectionStyle:(UITableViewCellSelectionStyleNone)];
}
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];
// Configure the view for the selected state
}
@end