I would like to be able to programmatically update the footer title of a section inside a table view, while I am typing text through a keyboard. The keyboard appears when I click on a cell to make its detailedText view editable, so I would like to update the footer title without reloading from the data source.

In fact, if I did this, the keyboard would disappear so it is not a good form of interaction. I've not been able to find a good solution to this problem... any suggestions?

Thank you

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

If you have groupped table, you can use:

- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section {
    yourLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 17)]; //I'm not sure about the frame...
    yourLabel.font = [UIFont systemFontOfSize:16];
    yourLabel.shadowColor = [UIColor whiteColor];
    yourLabel.shadowOffset = CGSizeMake(0, 1);
    yourLabel.textAlignment = UITextAlignmentCenter;
    yourLabel.textColor = RGB(76, 86, 108);
    yourLabel.backgroundColor = [UIColor clearColor];
    yourLabel.opaque = NO;
    return yourLabel;
}

Declare yourLabel in your .h file. Then, you can access it via

yourLabel.text = @"whatever you want";

Please check if that works :)

link|improve this answer
Yes, it will probably work. But I will have to handle a large number of groups, so it would be not so easy for me to handle all those different labels. I really would try to do it in a clean way ... – marzapower May 8 '11 at 19:25
By the way, what dimensions should I put into the yourFrame CGRect instance? – marzapower May 8 '11 at 19:25
You can place labels in NSArray and then use for loop. – Kashiv May 8 '11 at 19:26
Oops, I forgot about frame. It will be CGRectMake(0, 0, 320, 17), I think. – Kashiv May 8 '11 at 19:27
Uhm, I will give it a try ... but, to make it iPad-compatible what frame should I put in there? Or should I just handle the autoresizingMask of the UILabel? – marzapower May 8 '11 at 19:32
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.