pub unsafe trait INAddMediaIntentHandling: NSObjectProtocol {
// Provided methods
unsafe fn handleAddMedia_completion(
&self,
intent: &INAddMediaIntent,
completion: &DynBlock<dyn Fn(NonNull<INAddMediaIntentResponse>)>,
)
where Self: Sized + Message { ... }
unsafe fn confirmAddMedia_completion(
&self,
intent: &INAddMediaIntent,
completion: &DynBlock<dyn Fn(NonNull<INAddMediaIntentResponse>)>,
)
where Self: Sized + Message { ... }
unsafe fn resolveMediaItemsForAddMedia_withCompletion(
&self,
intent: &INAddMediaIntent,
completion: &DynBlock<dyn Fn(NonNull<NSArray<INAddMediaMediaItemResolutionResult>>)>,
)
where Self: Sized + Message { ... }
unsafe fn resolveMediaDestinationForAddMedia_withCompletion(
&self,
intent: &INAddMediaIntent,
completion: &DynBlock<dyn Fn(NonNull<INAddMediaMediaDestinationResolutionResult>)>,
)
where Self: Sized + Message { ... }
}
INAddMediaIntent
only.Expand description
Protocol to declare support for handling an INAddMediaIntent. By implementing this protocol, a class can provide logic for resolving, confirming and handling the intent.
The minimum requirement for an implementing class is that it should be able to handle the intent. The resolution and confirmation methods are optional. The handling method is always called last, after resolving and confirming the intent.
See also Apple’s documentation
Provided Methods§
Sourceunsafe fn handleAddMedia_completion(
&self,
intent: &INAddMediaIntent,
completion: &DynBlock<dyn Fn(NonNull<INAddMediaIntentResponse>)>,
)
Available on crate features INAddMediaIntentResponse
and INIntent
and INIntentResponse
and block2
only.
unsafe fn handleAddMedia_completion( &self, intent: &INAddMediaIntent, completion: &DynBlock<dyn Fn(NonNull<INAddMediaIntentResponse>)>, )
INAddMediaIntentResponse
and INIntent
and INIntentResponse
and block2
only.Handling method - Execute the task represented by the INAddMediaIntent that’s passed in
Called to actually execute the intent. The app must return a response for this intent.
Parameter intent
: The input intent
Parameter completion
: The response handling block takes a INAddMediaIntentResponse containing the details of the result of having executed the intent
See: INAddMediaIntentResponse
Sourceunsafe fn confirmAddMedia_completion(
&self,
intent: &INAddMediaIntent,
completion: &DynBlock<dyn Fn(NonNull<INAddMediaIntentResponse>)>,
)
Available on crate features INAddMediaIntentResponse
and INIntent
and INIntentResponse
and block2
only.
unsafe fn confirmAddMedia_completion( &self, intent: &INAddMediaIntent, completion: &DynBlock<dyn Fn(NonNull<INAddMediaIntentResponse>)>, )
INAddMediaIntentResponse
and INIntent
and INIntentResponse
and block2
only.Confirmation method - Validate that this intent is ready for the next step (i.e. handling)
Called prior to asking the app to handle the intent. The app should return a response object that contains additional information about the intent, which may be relevant for the system to show the user prior to handling. If unimplemented, the system will assume the intent is valid following resolution, and will assume there is no additional information relevant to this intent.
Parameter intent
: The input intent
Parameter completion
: The response block contains an INAddMediaIntentResponse containing additional details about the intent that may be relevant for the system to show the user prior to handling.
See: INAddMediaIntentResponse
Sourceunsafe fn resolveMediaItemsForAddMedia_withCompletion(
&self,
intent: &INAddMediaIntent,
completion: &DynBlock<dyn Fn(NonNull<NSArray<INAddMediaMediaItemResolutionResult>>)>,
)
Available on crate features INAddMediaMediaItemResolutionResult
and INIntent
and INIntentResolutionResult
and INMediaItemResolutionResult
and block2
only.
unsafe fn resolveMediaItemsForAddMedia_withCompletion( &self, intent: &INAddMediaIntent, completion: &DynBlock<dyn Fn(NonNull<NSArray<INAddMediaMediaItemResolutionResult>>)>, )
INAddMediaMediaItemResolutionResult
and INIntent
and INIntentResolutionResult
and INMediaItemResolutionResult
and block2
only.Resolution methods - Determine if this intent is ready for the next step (confirmation)
Called to make sure the app extension is capable of handling this intent in its current form. This method is for validating if the intent needs any further fleshing out.
Parameter intent
: The input intent
Parameter completion
: The response block contains an INIntentResolutionResult for the parameter being resolved
See: INIntentResolutionResult
unsafe fn resolveMediaDestinationForAddMedia_withCompletion( &self, intent: &INAddMediaIntent, completion: &DynBlock<dyn Fn(NonNull<INAddMediaMediaDestinationResolutionResult>)>, )
INAddMediaMediaDestinationResolutionResult
and INIntent
and INIntentResolutionResult
and INMediaDestinationResolutionResult
and block2
only.