<!-- mobian-agent-page publisher="dailydev" canonical="https://daily.dev/posts/initializing-observable-classes-with-the-state-macro-in-xcode-27-mxecv6ugp" -->

---
title: Initializing @Observable classes with the @State macro...
description: Xcode 27 changes @State from a property wrapper to a Swift macro, introducing lazy evaluation of initial values. This fixes a long-standing issue where...
canonical: https://daily.dev/posts/initializing-observable-classes-with-the-state-macro-in-xcode-27-mxecv6ugp
twitter:card: summary_large_image
twitter:site: @dailydotdev
og:type: website
og:site_name: daily.dev
og:title: Initializing @Observable classes with the @State macro in Xcode 27 | daily.dev
og:description: Xcode 27 changes @State from a property wrapper to a Swift macro, introducing lazy evaluation of initial values. This fixes a long-standing issue where...
og:url: https://daily.dev/posts/initializing-observable-classes-with-the-state-macro-in-xcode-27-mxecv6ugp
og:image: https://api.daily.dev/og/posts/MXecV6UGp.png
og:image:alt: Initializing @Observable classes with the @State macro in Xcode 27
og:image:width: 1200
og:image:height: 630
og:locale: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Initializing @Observable classes with the @State macro in Xcode 27

**[Nil Coalescing](https://daily.dev/sources/nilcoalescing)** · 4 min read · 0 upvotes · 0 comments

## Summary

Xcode 27 changes @State from a property wrapper to a Swift macro, introducing lazy evaluation of initial values. This fixes a long-standing issue where @Observable class initializers ran on every view struct recreation, causing unnecessary work. The post explains the behavior change with a concrete code example, notes that the fix is back-deployed to iOS 17/macOS 14 and later when compiled with Xcode 27, and warns against the still-problematic anti-pattern of assigning observable instances inside a view's init().

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://nilcoalescing.com/blog/InitializingObservableClassesWithTheStateMacroInXcode27>

---

Tags: [#swift](https://daily.dev/tags/swift), [#swiftui](https://daily.dev/tags/swiftui), [#xcode](https://daily.dev/tags/xcode)

[View this post on daily.dev](https://daily.dev/posts/initializing-observable-classes-with-the-state-macro-in-xcode-27-mxecv6ugp)

```json
{"@context":"https://schema.org","@graph":[{"@type":"Organization","@id":"https://daily.dev/#organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180},"sameAs":["https://twitter.com/dailydotdev","https://github.com/dailydotdev","https://www.linkedin.com/company/daily-dev-ltd"]},{"@type":"WebSite","@id":"https://daily.dev/#website","url":"https://daily.dev","name":"daily.dev","publisher":{"@id":"https://daily.dev/#organization"},"potentialAction":{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://daily.dev/search?q={search_term_string}"},"query-input":"required name=search_term_string"}}]}
{"@context":"https://schema.org","@type":"TechArticle","headline":"Initializing @Observable classes with the @State macro in Xcode 27","url":"https://daily.dev/posts/initializing-observable-classes-with-the-state-macro-in-xcode-27-mxecv6ugp","mainEntityOfPage":{"@type":"WebPage","@id":"https://daily.dev/posts/initializing-observable-classes-with-the-state-macro-in-xcode-27-mxecv6ugp"},"datePublished":"2026-08-02T07:15:11.560Z","dateModified":"2026-08-02T07:34:36.933Z","description":"Xcode 27 changes @State from a property wrapper to a Swift macro, introducing lazy evaluation of initial values. This fixes a long-standing issue where...","image":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/28f025219eeed008abb8d265662a388d?_a=AQAEuop","thumbnailUrl":"https://media.daily.dev/image/upload/f_auto,q_auto/v1/posts/28f025219eeed008abb8d265662a388d?_a=AQAEuop","isAccessibleForFree":true,"articleSection":"Nil Coalescing","inLanguage":"en","publisher":{"@type":"Organization","name":"daily.dev","url":"https://daily.dev","logo":{"@type":"ImageObject","url":"https://daily.dev/apple-touch-icon.png","width":180,"height":180}},"author":{"@type":"Organization","name":"Nil Coalescing","logo":"https://media.daily.dev/image/upload/s--rcEu6sag--/f_auto,q_auto/v1785654899/logos/nilcoalescing?_a=BAMAMicg0","url":"https://daily.dev/sources/nilcoalescing"},"commentCount":0,"discussionUrl":"https://daily.dev/posts/initializing-observable-classes-with-the-state-macro-in-xcode-27-mxecv6ugp","interactionStatistic":[{"@type":"InteractionCounter","interactionType":{"@type":"LikeAction"},"userInteractionCount":0},{"@type":"InteractionCounter","interactionType":{"@type":"CommentAction"},"userInteractionCount":0}],"keywords":"swift,swiftui,xcode","timeRequired":"PT4M"}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://daily.dev"},{"@type":"ListItem","position":2,"name":"Nil Coalescing","item":"https://daily.dev/sources/nilcoalescing"},{"@type":"ListItem","position":3,"name":"Initializing @Observable classes with the @State macro in Xcode 27"}]}
```

