samedi 25 avril 2015

UITableViewCell edit cell content on click


I have a question about UITAbleViewCell's.

I have implemented UITableViewDelegate method

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UITableViewCell *cell = [self tableView:tableView cellForRowAtIndexPath:indexPath];

    cell.textLabel.text = @"TEST!";
}

Sadly, after I click on cell, nothing happens...

Where is the problem?


Aucun commentaire:

Enregistrer un commentaire