Contents

relativeWordSpacingChange

The relative change in word spacing for rendering a book.

Declaration

var relativeWordSpacingChange: some AssistantSchemas.Enum { get }

Overview

Use Swift macros that generate additional properties and add protocol conformance for your app enum implementation. The following example shows an app enum that conforms to the .books.relativeWordSpacingChange schema:

@AppEnum(schema: .books.relativeWordSpacingChange)
enum BookRelativeWordSpacingChange: AppEnum {
    case small
    case large

    static var caseDisplayRepresentations: [BookRelativeWordSpacingChange: AppIntents.DisplayRepresentation] = [
        .small: "Increase",
        .large: "Decrease",
    ]
}

For more information about the .books app intent domain, see Making ebook actions available to Siri and Apple Intelligence. For general information about app intent domains, see Integrating actions with Siri and Apple Intelligence.

See Also

Types for static parameters