---
title: tableFooterView
framework: uikit
role: symbol
role_heading: Instance Property
path: uikit/uitableview/tablefooterview
---

# tableFooterView

The view that displays below the table’s content.

## Declaration

```swift
var tableFooterView: UIView? { get set }
```

## Mentioned in

Adding headers and footers to table sections

## Discussion

Discussion Use this property to specify a footer view for your entire table. The footer view is the last item to appear in the table’s view’s scrolling content, and it’s separate from the footer views you add to individual sections. The default value of this property is nil. When assigning a view to this property, set the height of your view to a nonzero value. The table view respects only the height of your view’s frame rectangle; it adjusts the width of your footer view automatically to match the table view’s width.

## See Also

### Related Documentation

- [sectionFooterHeight](uikit/uitableview/sectionfooterheight.md)

### Configuring the table’s appearance

- [style](uikit/uitableview/style-swift.property.md)
- [UITableView.Style](uikit/uitableview/style-swift.enum.md)
- [tableHeaderView](uikit/uitableview/tableheaderview.md)
- [backgroundView](uikit/uitableview/backgroundview.md)
