Updated for Xcode 14.0 beta 1
SwiftUI lets us finely control the way views look by adjusting their brightness, tint, hue, saturation, and more, all by using various modifiers.
For example, this creates an image view and tints the whole thing red:
Image("cat")
.colorMultiply(.red)
Download this as an Xcode project
You can adjust the saturation of views to any amount, where 0.0 is fully gray and 1.0 is its original color:
Image("boats")
.saturation(0.3)
Download this as an Xcode project
You can even dynamically adjust the contrast of a view by using the contrast()
modifier. A value of 0.0 yields no contrast (a flat gray image), 1.0 gives you the original image, and everything above 1.0 adds contrast.
So, this will reduce the image contrast to 50%:
Image("sunset")
.contrast(0.5)
Download this as an Xcode project
SAVE 50% To celebrate WWDC22, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.