---
title: "tableView(_:titleForHeaderInSection:)"
framework: uikit
role: symbol
role_heading: Instance Method
path: "uikit/uitableviewdatasource/tableview(_:titleforheaderinsection:)"
---

# tableView(_:titleForHeaderInSection:)

Asks the data source for the title of the header of the specified section of the table view.

## Declaration

```swift
optional func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String?
```

## Parameters

- `tableView`: The table-view object asking for the title.
- `section`: An index number identifying a section of tableView.

## Mentioned in

Adding headers and footers to table sections

## Return Value

Return Value A string to use as the title of the section header. If you return nil , the section will have no title.

## Discussion

Discussion The table view uses a fixed font style for section header titles. If you want a different font style, return a custom view (for example, a UILabel object) in the delegate method tableView(_:viewForHeaderInSection:) instead. If you don’t implement this method or the tableView(_:viewForHeaderInSection:) method, the table doesn’t display headers for sections. If you implement both methods, the tableView(_:viewForHeaderInSection:) method takes priority.

## See Also

### Providing cells, headers, and footers

- [tableView(_:cellForRowAt:)](uikit/uitableviewdatasource/tableview(_:cellforrowat:).md)
- [tableView(_:titleForFooterInSection:)](uikit/uitableviewdatasource/tableview(_:titleforfooterinsection:).md)
