NEW: My new book Pro SwiftUI is out now – level up your SwiftUI skills today! >>

How to combine text views together

Paul Hudson    @twostraws   

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

A line reading “SwiftUI is awesome” with “SwiftUI” in very large text and “is” in large text.

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

A line reading “SwiftUI is awesome” with “SwiftUI” in red, “is” in bold orange, and “awesome” in blue.

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.

Hacking with Swift is sponsored by Essential Developer

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!

Click to save your free spot now

Sponsor Hacking with Swift and reach the world's largest Swift community!

Similar solutions…

BUY OUR BOOKS
Buy Pro Swift Buy Pro SwiftUI Buy Swift Design Patterns Buy Testing Swift Buy Hacking with iOS Buy Swift Coding Challenges Buy Swift on Sundays Volume One Buy Server-Side Swift Buy Advanced iOS Volume One Buy Advanced iOS Volume Two Buy Advanced iOS Volume Three Buy Hacking with watchOS Buy Hacking with tvOS Buy Hacking with macOS Buy Dive Into SpriteKit Buy Swift in Sixty Seconds Buy Objective-C for Swift Developers Buy Beyond Code

Was this page useful? Let us know!

Average rating: 4.2/5

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.