I'm working but on iOS dynamic quick actions, and I want to use image from url, to be set as the quick action icon.
Is it possible? I didn't find an answer for that..
I'm working but on iOS dynamic quick actions, and I want to use image from url, to be set as the quick action icon.
Is it possible? I didn't find an answer for that..
Copyright © 2021 Jogjafile Inc.
Unfortunately, it's not possible using public API.
UIApplicationShortcutIcononly allows creating icons from contacts, images found in the bundle or predefined system icons.If you are willing to use private API (you shouldn't), there exist two methods which allow this:
It still wouldn't be a URL. You'd need to create a
UIImageinstance and call these methods with that image.