作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我支持iOS dark mode
在我的 iPad App 中。该问题仅适用于品牌 Logo 图像为黑色时的暗模式。一般来说,所有品牌标志都不是白色的,所以灯光模式没有问题。
以下是两种模式的屏幕截图:
灯光模式下的 Adura 品牌标志
暗模式下的 Adura 品牌标志
我怎样才能容纳这样的标志?我很少有人建议在标志后面设置灰色的背景 View ,但有些品牌可能会出现灰色标志。
最佳答案
这里的示例代码:
// Somewhere where you set UIImage for UIImageView
let imageView = UIImage()
let image = UIImage(named: "img.png")?.withRenderingMode(.alwaysTemplate)
imageView.image = image
imageView.tintColor = .black
...
override func traitCollectionDidChange(_ previousTraitCollection: UITraitCollection?) {
super.traitCollectionDidChange(previousTraitCollection)
if traitCollection.userInterfaceStyle == .dark {
imageView.tintColor = .red
}
else {
imageView.tintColor = .black
}
}
关于ios - 如何在我的 iOS 应用程序中处理暗模式的黑色内容图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60447902/
我是一名优秀的程序员,十分优秀!