// // WhiteContactTableViewCell.m // tongxin // // Created by ecell on 2021/10/19. // Copyright © 2021 xTT. All rights reserved. // #import "WhiteContactTableViewCell.h" @implementation WhiteContactTableViewCell - (void)setIsDeletMode:(BOOL)isDeletMode { _isDeletMode = isDeletMode; self.selectImg.hidden = !isDeletMode; } - (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