---
title: "findNext(_:)"
framework: uikit
role: symbol
role_heading: Instance Method
path: "uikit/uiresponderstandardeditactions/findnext(_:)"
---

# findNext(_:)

Finds the next match in your app’s interface.

## Declaration

```swift
optional func findNext(_ sender: Any?)
```

## Parameters

- `sender`: The object calling this method.

## Discussion

Discussion UIKit calls this method when the user selects the Find Next command from an editing menu. Your implementation should highlight the next result in the UI for finding textual content in your view. For example, a view using a find interaction might call highlightNextResult(in:) to update the find session.

## See Also

### Handling find and replace commands

- [find(_:)](uikit/uiresponderstandardeditactions/find(_:).md)
- [findPrevious(_:)](uikit/uiresponderstandardeditactions/findprevious(_:).md)
- [findAndReplace(_:)](uikit/uiresponderstandardeditactions/findandreplace(_:).md)
- [useSelectionForFind(_:)](uikit/uiresponderstandardeditactions/useselectionforfind(_:).md)
