iOS-UI-分区头-分区脚名称设置
2016-01-22 16:29:58
// 分区头名称
- (NSString )tableView:(UITableView )tableView titleForHeaderInSection:(NSInteger)section
{
return @"头头头";
}
// 分区脚部名称
- (NSString )tableView:(UITableView )tableView titleForFooterInSection:(NSInteger)section
{
return @"脚脚脚";
}