How to combine text views together
How to combine text views together êŽë š
Updated for Xcode 15
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)
You can also use this technique to create different colors or font weights of text, like this:
Text("SwiftUI ")
.foregroundStyle(.red)
+ Text("is ")
.foregroundStyle(.orange)
.fontWeight(.black)
+ Text("awesome")
.foregroundStyle(.blue)
Tips
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.