Programming/iOS - ObjC
UITableView - 각 section에 타이틀 추가
Tez.Park
2010. 11. 26. 10:27
- (NSString *)tableView:(UItableView *)tableView titleForHeaderInsection:(NSInteger)section {
return [NSString stringWithFormat:@" %@ ", [SECTION_ARRAY objectAtIndex:section]];
}
반응형