Seçili hücreyi takip etmek için bir özellik ekleyin
@property (nonatomic) int currentSelection;
Başlangıçların 'normal' konumda viewDidLoad
olduğundan emin olmak için (örneğin) içindeki bir sentinel değerine ayarlayınUITableView
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
//sentinel
self.currentSelection = -1;
}
İçinde heightForRowAtIndexPath
seçilen hücre için istediğiniz yüksekliği ayarlayabilirsiniz
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
int rowHeight;
if ([indexPath row] == self.currentSelection) {
rowHeight = self.newCellHeight;
} else rowHeight = 57.0f;
return rowHeight;
}
In didSelectRowAtIndexPath
size Geçerli seçimi kaydetmek ve dinamik bir yüksekliğe tasarrufu, gerekirse
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// do things with your cell here
// set selection
self.currentSelection = indexPath.row;
// save height for full text label
self.newCellHeight = cell.titleLbl.frame.size.height + cell.descriptionLbl.frame.size.height + 10;
// animate
[tableView beginUpdates];
[tableView endUpdates];
}
}
Gelen didDeselectRowAtIndexPath
sentinel değerine seleksiyon indeksi geri ayarlanır ve normal forma hücre geri animasyon
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
// do things with your cell here
// sentinel
self.currentSelection = -1;
// animate
[tableView beginUpdates];
[tableView endUpdates];
}
}