---
title: "tableView(_:didUnhighlightRowAt:)"
framework: uikit
role: symbol
role_heading: Instance Method
path: "uikit/uitableviewdelegate/tableview(_:didunhighlightrowat:)"
---

# tableView(_:didUnhighlightRowAt:)

Tells the delegate that the highlight was removed from the row at the specified index path.

## Declaration

```swift
optional func tableView(_ tableView: UITableView, didUnhighlightRowAt indexPath: IndexPath)
```

## Parameters

- `tableView`: The table view that removed the highlight from the cell.
- `indexPath`: The index path of the row that had its highlight removed.

## See Also

### Managing table view highlights

- [tableView(_:shouldHighlightRowAt:)](uikit/uitableviewdelegate/tableview(_:shouldhighlightrowat:).md)
- [tableView(_:didHighlightRowAt:)](uikit/uitableviewdelegate/tableview(_:didhighlightrowat:).md)
