Swift version: 5.10
Template images are the iOS 7.0 way of tinting any kind of image when it's inside a UIImageView
. This is usually used to mimic the tinting of button images (as seen in toolbars and tab bars) but it works anywhere you want to dynamically recolor an image.
To get started, load an image then call withRenderingMode()
on it, like this:
if let myImage = UIImage(named: "myImage") {
let tintableImage = myImage.withRenderingMode(.alwaysTemplate)
imageView.image = tintableImage
}
The tint color of a UIImageView
is the standard iOS 7 blue by default, but you can change it easily enough:
imageView.tintColor = UIColor.red
SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until February 9th.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Available from iOS 7.0
This is part of the Swift Knowledge Base, a free, searchable collection of solutions for common iOS questions.
Link copied to your pasteboard.