When specifying home screen quick actions, UIApplicationShortcutItems
, in your Info.plist, is there a way to use a system image from SF Symbols?
The docs no
Use UIApplicationShortcutItemIconSymbolName
instead of UIApplicationShortcutItemIconFile
in your Info.plist.
I read the docs and tried several methods to get this working but the conclusion I reached is that this won't be possible for two main reasons:
Info.plist
file can specify a platform
and device
type but you can't specify an OS version. In Apple's documents it's also stated that:
You can use SF Symbols in apps running in iOS 13 and later, watchOS 6 and later, and tvOS 13 and later. To browse the full set of symbols, download the SF Symbols app.
This means that you are able to use these symbols but with a standard way. Here is what you can do:
UIApplicationShortcutItemIconFile
key.This may not be the method you'd have hoped but it's a valid solution for using SF Symbols as shortcut icons so I hope this works for you.
Seems like there is no way to directly use those. But since there are not much symbols that you need to use statically at the same time, here is the solution:
UIApplicationShortcutItemIconFile
:I hope Apple add direct support for SF Symbols soon.