---
title: "reloadItems(at:)"
framework: uikit
role: symbol
role_heading: Instance Method
path: "uikit/uicollectionview/reloaditems(at:)"
---

# reloadItems(at:)

Reloads just the items at the specified index paths.

## Declaration

```swift
func reloadItems(at indexPaths: [IndexPath])
```

## Parameters

- `indexPaths`: An array of doc://com.apple.documentation/documentation/Foundation/NSIndexPath objects identifying the items you want to update.

## Discussion

Discussion Call this method to selectively reload only the specified items. This causes the collection view to discard any cells associated with those items and redisplay them.

## See Also

### Reloading content

- [hasUncommittedUpdates](uikit/uicollectionview/hasuncommittedupdates.md)
- [reconfigureItems(at:)](uikit/uicollectionview/reconfigureitems(at:).md)
- [reloadData()](uikit/uicollectionview/reloaddata().md)
- [reloadSections(_:)](uikit/uicollectionview/reloadsections(_:).md)
