---
title: "dequeueConfiguredReusableCellWithRegistration:forIndexPath:item:"
framework: uikit
role: symbol
role_heading: Instance Method
path: "uikit/uicollectionview/dequeueconfiguredreusablecellwithregistration:forindexpath:item:"
---

# dequeueConfiguredReusableCellWithRegistration:forIndexPath:item:

Dequeues a configured reusable cell object.

## Declaration

```occ
- (UICollectionViewCell *) dequeueConfiguredReusableCellWithRegistration:(UICollectionViewCellRegistration *) registration forIndexPath:(NSIndexPath *) indexPath item:(id) item;
```

## Parameters

- `registration`: The cell registration for configuring the cell object. See doc://com.apple.uikit/documentation/UIKit/UICollectionViewCellRegistration.
- `indexPath`: The index path that specifies the location of the cell in the collection view.
- `item`: The item that provides data for the cell.

## Return Value

Return Value A configured reusable cell object.

## See Also

### Creating cells

- [UICollectionViewCellRegistration](uikit/uicollectionviewcellregistration.md)
- [register(_:forCellWithReuseIdentifier:)](uikit/uicollectionview/register(_:forcellwithreuseidentifier:)-3vaho.md)
- [register(_:forCellWithReuseIdentifier:)](uikit/uicollectionview/register(_:forcellwithreuseidentifier:)-6z6t4.md)
- [dequeueReusableCell(withReuseIdentifier:for:)](uikit/uicollectionview/dequeuereusablecell(withreuseidentifier:for:).md)
