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 Take the pain out of configuring and testing your paywalls. RevenueCat's Paywalls allow you to remotely configure and A/B test your entire paywall UI without any code changes or app updates.
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.