Swift version: 5.2
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 From January 26th to 31st you can join a FREE crash course for iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a senior developer!
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.