UIApplicationShortcutItem - 我可以使用从网上下载的图像作为UIApplicationShortcutIcon吗?

7

我正在设置一些3D Touch功能,并希望使用从Web下载的图像(可以通过SDWebImage缓存访问)作为UIApplicationShortcutItem中的音频封面图片,就像苹果的音乐应用程序一样(请参见屏幕截图)。

Apple Music screenshot

这可能吗?据我所知,似乎不行,因为我无法将图像放入应用程序的捆绑包中?我猜想苹果正在做一些开发人员目前无法做到的事情? < p > UIApplicationShortcutItem 的文档只有以下内容:

// Create an icon using a system-defined image.
+ (instancetype)iconWithType:(UIApplicationShortcutIconType)type;

// Create an icon from a custom image.
// The provided image named will be loaded from the app's bundle
// and will be masked to conform to the system-defined icon style.
+ (instancetype)iconWithTemplateImageName:(NSString *)templateImageName;
1个回答

4

您说得对。目前(至少使用公共API),第三方应用程序无法使用非模板图像,也无法将图像下载并用作UIApplicationShortcutIcon。如果您希望在未来的版本中添加这些功能,请考虑在bugreport.apple.com上提交增强请求。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接