1 2 3 |
NSIndexPath *fifthRow = [NSIndexPath indexPathForRow:4 inSection:0]; UITableViewCell *cell = [tableView cellForRowAtIndexPath:fifthRow]; cell.textLabel.text = @"the updated text"; |
1 2 3 |
NSIndexPath *fifthRow = [NSIndexPath indexPathForRow:4 inSection:0]; UITableViewCell *cell = [tableView cellForRowAtIndexPath:fifthRow]; cell.textLabel.text = @"the updated text"; |