// // AreaCodeTableViewCell.m // ShenQi // // Created by Yao on 2024/11/9. // #import "AreaCodeTableViewCell.h" @implementation AreaCodeTableViewCell - (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