我已經子類化了一個UITableViewCell,這樣我就可以增加滾動性能,這對我來說已經非常有用。Subclassed UItableViewCell選擇
在我的子類,我有一個名爲seSelected方法,看起來像這樣
- (void)setSelected:(BOOL)selected animated:(BOOL)animated
{
[super setSelected:selected animated:animated];
// Configure the view for the selected state
if (selected) {
self.backgroundColor = [UIColor lightGrayColor];
}else{
self.backgroundColor = [UIColor whiteColor];
}
}
我想知道如何讓這個如果我觸摸同一小區將取消選擇單元格,並改變顏色重新白色?我已經嘗試了一些不同的如果在setSelected但nothings工作的說法。
任何幫助,將不勝感激。