Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 iOS 动态快速操作,并且我想使用来自 url 的图像,将其设置为快速操作图标。
是否可以?我没有找到答案。。
不幸的是,使用公共 API 是不可能的。
UIApplicationShortcutIcon仅允许从联系人、捆绑包中的图像或预定义的系统图标创建图标。
UIApplicationShortcutIcon
如果你愿意使用私有 API(你不应该),有两种方法可以做到这一点:
+ (id)iconWithCustomImage:(id)arg1 isTemplate:(_Bool)arg2; + (id)iconWithCustomImage:(id)arg1;
它仍然不是 URL。您需要创建一个UIImage实例并使用该图像调用这些方法。
UIImage