---
title: "resolvePriority(for:with:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/inaddtasksintenthandling/resolvepriority(for:with:)"
---

# resolvePriority(for:with:)

Resolves the priority associated with the new tasks.

## Declaration

```swift
optional func resolvePriority(for intent: INAddTasksIntent, with completion: @escaping @Sendable (INTaskPriorityResolutionResult) -> Void)
```

```swift
optional func resolvePriority(for intent: INAddTasksIntent) async -> INTaskPriorityResolutionResult
```

## Parameters

- `intent`: The intent object that contains 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 while implementing this method. This handler has no return value and takes the following parameter:

## Discussion

Discussion This method resolves any priorities associated with the new tasks. Use the intent object to obtain the priority information, if any, suggested by the user. If the intent does not contain any priority information, and you don’t require any, return a resolution indicating that you don’t require a value.

## See Also

### Resolving the Intent Parameters

- [resolveTargetTaskList(for:with:)](intents/inaddtasksintenthandling/resolvetargettasklist(for:with:)-2er0u.md)
- [resolveTaskTitles(for:with:)](intents/inaddtasksintenthandling/resolvetasktitles(for:with:).md)
- [resolveSpatialEventTrigger(for:with:)](intents/inaddtasksintenthandling/resolvespatialeventtrigger(for:with:).md)
- [resolveTemporalEventTrigger(for:with:)](intents/inaddtasksintenthandling/resolvetemporaleventtrigger(for:with:)-7yrz3.md)
- [resolveTargetTaskList(for:with:)](intents/inaddtasksintenthandling/resolvetargettasklist(for:with:)-2uevx.md)
- [resolveTemporalEventTrigger(for:with:)](intents/inaddtasksintenthandling/resolvetemporaleventtrigger(for:with:)-2h9ff.md)
