我正在尝试在我的 UITableView 中实现一个“加载更多”单元格。
如何以编程方式更改单元格“加载更多”的内容、高度等?我假设这可以通过获取选定的单元格来完成,如下所示。例如,当我想更改背景颜色时 - 它没有效果。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if(indexPath.row == 2){
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
}