Are you sure this doesn't work? (not actual code)
if(#available iOS 18) {
AppShortcut(intent: SearchSnippetIntent(), phrases: [
"Search \(.applicationName) Studio",
"Search \(.applicationName)"
], shortTitle: "Search", systemImageName: "magnifyingglass")
}
}
Have you tried something like: (not actual code)
@available iOS 18
struct SnippetsShortcutsAppShortcutsProvider: AppShortcutsProvider {
// List all four items here
}
@available iOS 17
struct SnippetsShortcutsAppShortcutsProvider: AppShortcutsProvider {
// List just the three iOS 17 ones here
}