चयनित सेल का ट्रैक रखने के लिए एक संपत्ति जोड़ें
@property (nonatomic) int currentSelection;
यह (उदाहरण के लिए) में एक प्रहरी मूल्य पर सेट करें, यह viewDidLoad
सुनिश्चित करने के लिए कि UITableView
'सामान्य' स्थिति में शुरू होता है
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
//sentinel
self.currentSelection = -1;
}
में heightForRowAtIndexPath
आप ऊंचाई सेट कर सकते हैं आप चयनित सेल के लिए चाहते हैं
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
int rowHeight;
if ([indexPath row] == self.currentSelection) {
rowHeight = self.newCellHeight;
} else rowHeight = 57.0f;
return rowHeight;
}
यदि didSelectRowAtIndexPath
आप वर्तमान चयन को सहेजते हैं और यदि आवश्यक हो, तो एक गतिशील ऊंचाई बचा सकते हैं
- (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];
}
}
में didDeselectRowAtIndexPath
प्रहरी मूल्य के लिए चयन सूचकांक वापस सेट और सामान्य रूप के लिए सेल वापस चेतन
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
// do things with your cell here
// sentinel
self.currentSelection = -1;
// animate
[tableView beginUpdates];
[tableView endUpdates];
}
}