<!--
{
  "availability" : [
    "iOS: 8.0.0 -",
    "iPadOS: 8.0.0 -",
    "macCatalyst: 13.1.0 -",
    "macOS: 10.13.0 -",
    "tvOS: 10.0.0 -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "PhotoKit",
  "identifier" : "/documentation/Photos/PHFetchResult/enumerateObjects(_:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Photos"
    ],
    "preciseIdentifier" : "c:objc(cs)PHFetchResult(im)enumerateObjectsUsingBlock:"
  },
  "title" : "enumerateObjects(_:)"
}
-->

# enumerateObjects(_:)

Executes the specified block using each object in the fetch result, starting with the first object and continuing in order to the last object.

```
func enumerateObjects(_ block: @escaping (ObjectType, Int, UnsafeMutablePointer<ObjCBool>) -> Void)
```

## Parameters

`block`

The block to apply to elements in the fetch result.

    The block takes three parameters:

- obj: The element in the fetch result.
- idx: The index of the element in the fetch result.
- stop: A pointer to a Boolean value. Set `*stop` to `true` within the block to cancel further processing of the fetch result.

## Discussion

This method executes synchronously.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)