私は3D Touchの機能をいくつか設定しており、アップルの音楽アプリのようにUIApplicationShortcutItem
のウェブでダウンロードした画像(SDWebImage
のキャッシュ経由でアクセス可能)をオーディオカバー画像として使用したいとしていますスクリーンショット)。UIApplicationShortcutItem - UIApplicationShortcutIconとしてWebからダウンロードしたイメージを使用できますか?
これは可能ですか?私が知る限り、アプリのバンドルにイメージを置くことができないので、それはそうではないように見えますか?私はAppleがdevsがまだできないことをやっていると思いますか?
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;