// 自定义头部区域

  • (UIView )tableView:(UITableView )tableView viewForHeaderInSection:(NSInteger)section
    {
    UIView *header = [[UIView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)];
    header.backgroundColor = [UIColor grayColor];
    return [header autorelease];
    }

// 自定义脚部区域

  • (UIView )tableView:(UITableView )tableView viewForFooterInSection:(NSInteger)section
    {
    UIView *footer = [[UIView alloc]init];
    footer.backgroundColor = [UIColor blackColor];
    return [footer autorelease];

    }

iOS-UI_TableView-自定义头部区域-自定义脚部区域