문제

I have my uitableview created with grouped style..

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

thanks!

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top