You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
590 B
30 lines
590 B
// |
|
// 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
|
|
|