gpt4 book ai didi

ios - 如何在深色模式下使用 Light UIUserInterfaceStyle 图像版本?

转载 作者:行者123 更新时间:2023-11-28 10:27:03 25 4
gpt4 key购买 nike

我使用图片,这张图片有浅色和深色两种版本 UIUserInterfaceStyle,但当深色模式打开时,我需要在一个 UIViewController 中使用图片浅色版本。我知道我可以使用 tintColor,但我想知道是否有其他方法可以做到这一点。

最佳答案

Subramanian 的回答非常适合这个用例。

但是,如果您真的只需要不同样式的 UIImage,您可以执行以下操作:

// create a trait collection with `light` interface style
let traitCollection = UITraitCollection(userInterfaceStyle: .light)

// If you have an existing image, you can change it's style like this:
let lightImage = image.withConfiguration(traitCollection.imageConfiguration)

// Or if you load the image by name, you can do this:
let lightImage = UIImage(named: "imageName", in: nil, compatibleWith: traitCollection)

关于ios - 如何在深色模式下使用 Light UIUserInterfaceStyle 图像版本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58507087/

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