INUIAddVoiceShortcutViewController

INUIAddVoiceShortcutViewController

INUIAddVoiceShortcutViewController Class of IntentsUI A view controller that guides the user through the steps for adding a shortcut to Siri.

class INUIAddVoiceShortcutViewController

Overview

When the user performs an action such as placing an order for tomato soup, the app should provide the option to add the action to Siri as a shortcut. To present this option in your app, use INUIAddVoiceShortcutButton to display an Add to Siri button. Using this button makes your app consistent with other apps that support Siri Shortcuts.

After creating the button, assign its action to a method that displays INUIAddVoiceShortcutViewController. This controller steps the user through the process of adding the shortcut to Siri.

To receive notifications of events from the view controller, set the delegate to an object that conforms to the INUIAddVoiceShortcutViewControllerDelegate protocol.

The listing below adds an Add to Siri button to a view and let the user record an invocation phrase.

// Add an "Add to Siri" button to a view.
func addSiriButton(to view: UIView) {
    let button = INUIAddVoiceShortcutButton(style: .blackOutline)
    button.translatesAutoresizingMaskIntoConstraints = false

    view.addSubview(button)
    view.centerXAnchor.constraint(equalTo: button.centerXAnchor).isActive = true
    view.centerYAnchor.constraint(equalTo: button.centerYAnchor).isActive = true

    button.addTarget(self, action: #selector(addToSiri(_:)), for: .touchUpInside)
}

// Present the Add Shortcut view controller after the
// user taps the "Add to Siri" button.
@objc
func addToSiri(_ sender: Any) {
    if let shortcut = INShortcut(intent: orderSoupOfTheDayIntent) {
        let viewController = INUIAddVoiceShortcutViewController(shortcut: shortcut)
        viewController.modalPresentationStyle = .formSheet
        viewController.delegate = self // Object conforming to `INUIAddVoiceShortcutViewControllerDelegate`.
        present(viewController, animated: true, completion: nil)
    }
}

Inherits From

NSViewController UIViewController

Conforms To

CVarArg CustomDebugStringConvertible CustomStringConvertible Equatable Hashable NSCoding NSEditor NSExtensionRequestHandling NSObjectProtocol NSSeguePerforming NSStandardKeyBindingResponding NSTouchBarProvider NSUserActivityRestoring NSUserInterfaceItemIdentification Sendable SendableMetatype UIActivityItemsConfigurationProviding UIAppearanceContainer UIContentContainer UIFocusEnvironment UIPasteConfigurationSupporting UIResponderStandardEditActions UIStateRestoring UITraitChangeObservable UITraitEnvironment UIUserActivityRestoring