gpt4 book ai didi

swift2 - watchOS 2 图像复杂化

转载 作者:行者123 更新时间:2023-12-05 03:12:25 24 4
gpt4 key购买 nike

所以我试图让我的 watchOS 2 复杂功能显示图像。研究让我找到了这些链接:

https://www.bignerdranch.com/blog/watchkit-2-complications/ http://techotopia.com/index.php/A_watchOS_2_Complication_Tutorial https://developer.apple.com/library/prerelease/watchos/documentation/ClockKit/Reference/CLKImageProvider_class/index.html#//apple_ref/occ/cl/CLKImageProvider https://forums.developer.apple.com/thread/7426

我曾尝试使用图像 Assets 来实现复杂化,以及将单个图像导入项目。我加载图片的代码如下:

lazy var utilitarianImageProvider: CLKImageProvider? = {
if let image = UIImage(named: "Complication/Utilitarian") {
return CLKImageProvider(onePieceImage: image)
}
else {
print("Cannot find image named 'Complication/Utilitarian'")
}
return nil
}()

但这只会产生这张图片:

watchOS 2 Complication

我要加载的图像是:

Logo

我尝试了彩色图像和单色图像,但我总是得到相同的结果。

最佳答案

尝试将黑色背景设置为透明。图像被视为仅 alpha,这意味着图像文件中的所有颜色都将被丢弃, watch 将相应地为其着色。

关于swift2 - watchOS 2 图像复杂化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33907635/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com