---
title: "applySnapshotUsingReloadData(_:)"
framework: uikit
role: symbol
role_heading: Instance Method
path: "uikit/uitableviewdiffabledatasource-2euir/applysnapshotusingreloaddata(_:)"
---

# applySnapshotUsingReloadData(_:)

Resets the UI to reflect the state of the data in the snapshot without computing a diff or animating the changes.

## Declaration

```swift
@MainActor @preconcurrency func applySnapshotUsingReloadData(_ snapshot: NSDiffableDataSourceSnapshot<SectionIdentifierType, ItemIdentifierType>) async
```

## Parameters

- `snapshot`: The snapshot that reflects the new state of the data in the table view.

## Discussion

Discussion The system interrupts any ongoing item animations and immediately reloads the table view’s content. You can safely call this method from a background queue, but you must do so consistently in your app. Always call this method exclusively from the main queue or from a background queue.

## See Also

### Updating data

- [snapshot()](uikit/uitableviewdiffabledatasource-2euir/snapshot().md)
- [apply(_:animatingDifferences:)](uikit/uitableviewdiffabledatasource-2euir/apply(_:animatingdifferences:).md)
- [apply(_:animatingDifferences:completion:)](uikit/uitableviewdiffabledatasource-2euir/apply(_:animatingdifferences:completion:).md)
- [applySnapshotUsingReloadData(_:completion:)](uikit/uitableviewdiffabledatasource-2euir/applysnapshotusingreloaddata(_:completion:).md)
- [defaultRowAnimation](uikit/uitableviewdiffabledatasource-2euir/defaultrowanimation.md)
