relativeCharacterSpacingChange
The relative change in character spacing for rendering a book.
Declaration
var relativeCharacterSpacingChange: 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.relativeCharacterSpacingChange schema:
@AppEnum(schema: .books.relativeCharacterSpacingChange)
enum BookRelativeCharacterSpacingChange: AppEnum {
case reset
static var caseDisplayRepresentations: [BookRelativeCharacterSpacingChange: AppIntents.DisplayRepresentation] = [
.reset: "Reset"
]
}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.