Updated for Xcode 14.2
SwiftUI’s text view overloads the +
operator so that you can combine them together to make new text views.
This is helpful for times when you need to have different formatting across your views, because you can make each text view look exactly as you want then join them together to make a single combined text view. Even better, VoiceOver automatically recognizes them as a single piece of text when it comes to reading them out.
For example, this creates three text views then uses +
to join them into a single text view to be returned:
Text("SwiftUI ")
.font(.largeTitle)
+ Text("is ")
.font(.headline)
+ Text("awesome")
.font(.footnote)
Download this as an Xcode project
You can also use this technique to create different colors or font weights of text, like this:
Text("SwiftUI ")
.foregroundColor(.red)
+ Text("is ")
.foregroundColor(.orange)
.fontWeight(.black)
+ Text("awesome")
.foregroundColor(.blue)
Download this as an Xcode project
Tip: Combining text views like this is as close as we get to attributed strings in SwiftUI – there is no support for using NSAttributedString
at this time.
SPONSORED From March 20th to 26th, you can 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!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.