jimhsf42.bsky.social
@jimhsf42.bsky.social
So the comment in your article could state that it recreates the @State view models. Saying it runs the init repeatedly sounds like it’s re-running the init method on the same class instance; you have to know this is impossible to infer that the text as-written means recreate, not re-init.
December 6, 2025 at 10:20 PM
A “normal” Swift coder cannot directly call init functions, they're called by the Swift runtime after the storage for the class has been allocated.

Is SwiftUI doing something under the covers to repeatedly call the init directly when the view struct init is called?
December 6, 2025 at 8:01 PM