---
title: "resolveTitle(for:with:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/increatenoteintenthandling/resolvetitle(for:with:)"
---

# resolveTitle(for:with:)

Resolves the title of the note.

## Declaration

```swift
optional func resolveTitle(for intent: INCreateNoteIntent, with completion: @escaping @Sendable (INSpeakableStringResolutionResult) -> Void)
```

```swift
optional func resolveTitle(for intent: INCreateNoteIntent) async -> INSpeakableStringResolutionResult
```

## Parameters

- `intent`: The intent object containing details about the user’s request. Use this object to get the initial information, if any, provided by the user.
- `completion`: The handler block to execute with the resolution. You must execute this handler at some point during your implementation of this method. This handler has no return value and takes the following parameter:

## Discussion

Discussion Implement this method to resolve the title for a note. Use the intent object to obtain the title, if any, suggested by the user. The title represents the initial text that users see for the note. If the intent does not contain title information, choose a resolution that is most appropriate for your app. If you can extract the title information from the note’s content, return a result of success with the title string you extracted. Otherwise, you can return a result of not required if you do not require a title.

## See Also

### Resolving the Intent Parameters

- [resolveContent(for:with:)](intents/increatenoteintenthandling/resolvecontent(for:with:).md)
- [resolveGroupName(for:with:)](intents/increatenoteintenthandling/resolvegroupname(for:with:).md)
