Tambahkan properti untuk melacak sel yang dipilih
@property (nonatomic) int currentSelection;
Setel ke nilai sentinel di (misalnya) viewDidLoad
, untuk memastikan bahwa UITableView
dimulai pada posisi 'normal'
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
//sentinel
self.currentSelection = -1;
}
Di heightForRowAtIndexPath
Anda dapat mengatur ketinggian yang Anda inginkan untuk sel yang dipilih
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
int rowHeight;
if ([indexPath row] == self.currentSelection) {
rowHeight = self.newCellHeight;
} else rowHeight = 57.0f;
return rowHeight;
}
Di didSelectRowAtIndexPath
Anda menyimpan pilihan saat ini dan menyimpan ketinggian dinamis, jika diperlukan
- (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];
}
}
Dalam didDeselectRowAtIndexPath
mengatur indeks seleksi kembali ke nilai sentinel dan menghidupkan sel kembali ke bentuk normal
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
// do things with your cell here
// sentinel
self.currentSelection = -1;
// animate
[tableView beginUpdates];
[tableView endUpdates];
}
}