Thêm một thuộc tính để theo dõi ô đã chọn
@property (nonatomic) int currentSelection;
Đặt nó thành một giá trị sentinel trong (ví dụ) viewDidLoad
, để đảm bảo rằng UITableView
bắt đầu ở vị trí 'bình thường'
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
//sentinel
self.currentSelection = -1;
}
Trong heightForRowAtIndexPath
bạn có thể đặt chiều cao bạn muốn cho ô đã chọn
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
int rowHeight;
if ([indexPath row] == self.currentSelection) {
rowHeight = self.newCellHeight;
} else rowHeight = 57.0f;
return rowHeight;
}
Trong didSelectRowAtIndexPath
bạn lưu lựa chọn hiện tại và lưu chiều cao động, nếu cần
- (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];
}
}
Trong didDeselectRowAtIndexPath
thiết lập chỉ mục lựa chọn trở về giá trị sentinel và làm động ô trở lại dạng bình thường
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
// do things with your cell here
// sentinel
self.currentSelection = -1;
// animate
[tableView beginUpdates];
[tableView endUpdates];
}
}