I am trying to implement a "Load More" cell into my UITableView.
How can I change content, height, etc. of the cell "Load More" programmatically? I assume that this can be done with getting the selected cell like shown below. When I want to change the background color for instance - it has no effects.
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if(indexPath.row == 2){
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
}