---
title: "tableView(_:didEndDisplayingFooterView:forSection:)"
framework: uikit
role: symbol
role_heading: Instance Method
path: "uikit/uitableviewdelegate/tableview(_:didenddisplayingfooterview:forsection:)"
---

# tableView(_:didEndDisplayingFooterView:forSection:)

Tells the delegate that the specified footer view was removed from the table.

## Declaration

```swift
optional func tableView(_ tableView: UITableView, didEndDisplayingFooterView view: UIView, forSection section: Int)
```

## Parameters

- `tableView`: The table view that removed the view.
- `view`: The footer view that was removed.
- `section`: The index of the section that contained the footer.

## Discussion

Discussion Use this method to detect when a footer view is removed from a table view, as opposed to monitoring the view itself to see when it appears or disappears.

## See Also

### Tracking the removal of views

- [tableView(_:didEndDisplaying:forRowAt:)](uikit/uitableviewdelegate/tableview(_:didenddisplaying:forrowat:).md)
- [tableView(_:didEndDisplayingHeaderView:forSection:)](uikit/uitableviewdelegate/tableview(_:didenddisplayingheaderview:forsection:).md)
