There are some great "Quick Action Icons" available at https://developer.apple.com/ios/human-interface-guidelines/graphics/system-icons/.
Is it possible to make a UIImage
from one of these UIApplicationShortcutIcon
s to use on, say, a UIButton
. For example, the mail icon:
let mailIcon = UIApplicationShortcutIcon(type: .mail)
let mailImage = UIImage( ... )
Any help would be appreciated. Thanks.