// 分区头名称

  • (NSString )tableView:(UITableView )tableView titleForHeaderInSection:(NSInteger)section
    {
    return @"头头头";
    }
    // 分区脚部名称
  • (NSString )tableView:(UITableView )tableView titleForFooterInSection:(NSInteger)section
    {
    return @"脚脚脚";
    }
    iOS-UI-分区头-分区脚名称设置YIem