我可以更改 UIButton 上的色调颜色,但不能更改 UIImage
Posted
技术标签:
【中文标题】我可以更改 UIButton 上的色调颜色,但不能更改 UIImage【英文标题】:I can change tint colour on UIButton but not UIImage 【发布时间】:2014-07-31 23:06:58 【问题描述】:我正在使用UIImage
和UIButton
上的色调。
在UIButton
上(当按钮类型设置为系统时),我可以通过转到属性检查器 -> 视图 -> 色调在 Xcode 中设置UIButton
的色调颜色
在UIImageView
上,我设置了相同的图像,但是当我转到属性检查器 -> 视图 -> 色调时,图像的颜色没有改变。
为什么会有这样的行为?以及如何解决?
我使用的是 ios 7 和 Xcode 5.1.1
【问题讨论】:
【参考方案1】:您的图片的渲染模式需要设置为模板,而不是原始。为此,您可以在图像上调用-[UIImage imageWithRenderingMode:]
方法并传入UIImageRenderingModeAlwaysTemplate
,然后将图像视图的图像设置为结果图像:
yourImageView.image = [yourImage imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
或者,在 Swift 中:
yourImageView.image = yourImage.imageWithRenderingMode(.AlwaysTemplate)
【讨论】:
以上是关于我可以更改 UIButton 上的色调颜色,但不能更改 UIImage的主要内容,如果未能解决你的问题,请参考以下文章
在 Swift 中按下 uibutton 时更改色调图像颜色
根据状态更改 UIButton 中 ImageView 的 tint 颜色