---
title: "unhideRows(at:withAnimation:)"
framework: appkit
role: symbol
role_heading: Instance Method
path: "appkit/nstableview/unhiderows(at:withanimation:)"
---

# unhideRows(at:withAnimation:)

Unhides the specified table rows.

## Declaration

```swift
func unhideRows(at indexes: IndexSet, withAnimation rowAnimation: NSTableView.AnimationOptions = [])
```

## Parameters

- `indexes`: An index set containing indexes of the hidden rows to be shown again.
- `rowAnimation`: An animation effect to be applied when the rows are hidden.

## Discussion

Discussion Unhiding a table row causes the tableView(_:didAdd:forRow:) delegate method to be invoked.

## See Also

### Related Documentation

- [NSTableView.AnimationOptions](appkit/nstableview/animationoptions.md)
- [tableView(_:didAdd:forRow:)](appkit/nstableviewdelegate/tableview(_:didadd:forrow:).md)

### Hiding and Showing Table Rows

- [hideRows(at:withAnimation:)](appkit/nstableview/hiderows(at:withanimation:).md)
- [hiddenRowIndexes](appkit/nstableview/hiddenrowindexes.md)
