WWDC23 SALE: Save 50% on all my Swift books and bundles! >>

How to fix “Modifying state during view update, this will cause undefined behavior”

Paul Hudson    @twostraws   

Updated for Xcode 14.2

This error occurs because you’re modifying the state of a SwiftUI view while the view is actually being rendered. Modifying the state of a view causes the view to be re-rendered, so SwiftUI gets confused – “undefined behavior” is Apple’s way of saying that whatever you see right now might change in the future because it’s not how SwiftUI should be used.

Here’s an example of the problem in action:

struct ContentView: View {
    @State private var name = ""

    var body: some View {
        if name.isEmpty {
            name = "Anonymous"
        }

        return Text("Hello, \(name)!")
    }
}

That creates a state property called name, and has a text view that shows it. However, inside body is some logic that attempts to modify name while the view is being rendered – SwiftUI is trying to figure out what’s in the view, and you’re changing it while that process is happening.

To fix the problem, move the code that changes your view’s state – in this case the name = "Anonymous" – to something that occurs outside of the view updates. For example, this sets the value when the text view first appears:

struct ContentView: View {
    @State var name = ""

    var body: some View {
        Text("Hello, \(name)!")
            .onAppear {
                if name.isEmpty {
                    name = "Anonymous"
                }
            }
    }
}

You could also move the logic into an onTapGesture() or similar – anywhere that isn’t directly inside the body of a view.

Save 50% in my WWDC23 sale.

SAVE 50% To celebrate WWDC23, 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.

Save 50% on all our books and bundles!

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.0/5

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.