Pergunta

I have my uitableview created with grouped style..

I wish from my code set the description for the sections of my table..

thanks!

Foi útil?

Solução

You need to elaborate on your question with more specifics, but I suggest you start by looking at the following table delegate method:

- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
    return <sectionName for section>;
}

Replace with code to access the proper name for the section.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top