Locating and decoding barcodes in 3D space
At a glance
| Item | Summary |
|---|---|
| Purpose | Create engaging, hands-free experiences based on barcodes in a person’s surroundings. |
| App architecture | LocatingAndDecodingBarcodesApp composes WindowGroup + ImmersiveSpace around ContentView; AppModel coordinates ARKit provider updates and maps anchors into RealityKit content. |
| Main patterns | SwiftUI scene composition, SwiftUI–RealityKit bridge, Explicit immersive-space lifecycle, Observable state owner, Provider session boundary, Async update consumer |
| Project style | Code-light sample with 5 scanned Swift file(s) and 244 Swift line(s); resources and generated assets are excluded from those counts. |
Project structure
Source bundle/
└── LocatingAndDecodingBarcodes/
├── LocatingAndDecodingBarcodesApp.swift # LocatingAndDecodingBarcodesApp
├── AppModel.swift # AppModel, ImmersiveSpaceState
├── ContentView.swift # ContentView
├── ImmersiveView.swift # ImmersiveView
└── ToggleImmersiveSpaceButton.swift # ToggleImmersiveSpaceButton
Structure observations
- The runtime boundary is WindowGroup + ImmersiveSpace; the pruned tree lists only files that explain lifecycle, state, or framework integration.
- App code is compact; any explicit model, provider, or entity owner is still shown below rather than collapsed into view-local state.
Overall architecture
flowchart LR
LocatingAndDecodingBarcodesApp_1["LocatingAndDecodingBarcodesApp"]
WindowGroup___ImmersiveSpace_2["WindowGroup + ImmersiveSpace"]
ContentView_3["ContentView"]
AppModel_4["AppModel"]
RealityView_entity_graph_5["RealityView entity graph"]
ARKit_providers___RealityKit_6["ARKit providers + RealityKit"]
LocatingAndDecodingBarcodesApp_1 --> WindowGroup___ImmersiveSpace_2
WindowGroup___ImmersiveSpace_2 --> ContentView_3
ContentView_3 --> AppModel_4
AppModel_4 --> RealityView_entity_graph_5
RealityView_entity_graph_5 --> ARKit_providers___RealityKit_6
Reference code
LocatingAndDecodingBarcodes/LocatingAndDecodingBarcodesApp.swift:11 — the app or executable entry declares the outer scene lifecycle.
struct LocatingAndDecodingBarcodesApp: App {
// ...
}The diagram is a responsibility flow, not a claim that every adjacent node directly calls the next. It keeps scene ownership, shared state, RealityKit content, and framework-provider work at separate levels.
Ownership and state
classDiagram
LocatingAndDecodingBarcodesApp *-- AppModel : appModel
ContentView o-- AppModel : appModel
ImmersiveView *-- ARKitSession : arkitSession
ImmersiveView *-- Entity : root
Ownership evidence
LocatingAndDecodingBarcodes/LocatingAndDecodingBarcodesApp.swift:12 — representative stored state or the nearest verified lifecycle anchor.
@State private var appModel = AppModel()| Owner | Object or state | Relationship | Mutation authority |
|---|---|---|---|
LocatingAndDecodingBarcodesApp |
AppModel as appModel |
creates and retains | Only the declaring scope writes |
ContentView |
AppModel as appModel |
receives a shared/non-owning reference | The upstream owner controls lifetime; this scope may invoke its mutable API |
ImmersiveView |
ARKitSession as arkitSession |
creates and retains | Only the declaring scope writes |
ImmersiveView |
Entity as root |
creates and retains | Only the declaring scope writes |
Ownership here is deliberately narrow: @Environment and weak references are shared links, initialized @State or stored services are lifecycle ownership, and a RealityView content closure owns additions to its entity graph without making the SwiftUI view a reference-type owner.
Class and protocol design
| Type | Responsibility | Depends on or conforms to |
|---|---|---|
LocatingAndDecodingBarcodesApp (LocatingAndDecodingBarcodes/LocatingAndDecodingBarcodesApp.swift:11) |
Declares app scenes and top-level dependency lifetime. | App |
ContentView (LocatingAndDecodingBarcodes/ContentView.swift:11) |
Presents UI and forwards gestures or lifecycle events. | View |
AppModel (LocatingAndDecodingBarcodes/AppModel.swift:13) |
Owns observable feature state and domain transitions. | Concrete framework collaborators |
ImmersiveView (LocatingAndDecodingBarcodes/ImmersiveView.swift:13) |
Presents UI and forwards gestures or lifecycle events. | View |
The source defines no local substitution protocol in the reviewed boundary. Its protocol use is framework-facing (App, View, RealityKit/ARKit protocols, or platform adapters), so this document does not label the whole app protocol-oriented.
Access control
| Symbol | Access | Verified effect | Likely rationale |
|---|---|---|---|
@State private var arkitSession = ARKitSession() (LocatingAndDecodingBarcodes/ImmersiveView.swift:14) |
private |
Use is restricted to the declaration and same-file extensions permitted by Swift. | Inference: Hide implementation details and lifecycle-sensitive state. |
No reviewed declaration uses fileprivate, private(set), public, open; unmodified Swift declarations are internal.
Reference code
LocatingAndDecodingBarcodes/ImmersiveView.swift:14 — representative visibility boundary.
@State private var arkitSession = ARKitSession()Logic ownership and placement
| Logic | Owning type or file | Placement rationale |
|---|---|---|
| Scene declaration and dependency lifetime | LocatingAndDecodingBarcodesApp |
The App/entry boundary determines window, volume, and immersive-space lifetime. |
| Presentation, attachments, and gestures | ContentView |
SwiftUI view code forwards user intent and RealityView lifecycle events. |
| Shared feature state and commands | AppModel |
A role-named owner prevents sibling views from duplicating transitions. |
| Tracking authorization and update streams | LocatingAndDecodingBarcodes/ImmersiveView.swift:14 |
Provider lifetime and async updates remain outside render-only view code. |
Design patterns
| Pattern | Source evidence | Purpose or tradeoff |
|---|---|---|
| SwiftUI scene composition | LocatingAndDecodingBarcodes/LocatingAndDecodingBarcodesApp.swift:11 |
Keeps windows, volumes, and immersive-space lifecycle visible at the app boundary. |
| SwiftUI–RealityKit bridge | LocatingAndDecodingBarcodes/ImmersiveView.swift:19 |
Builds and updates a RealityKit entity graph from SwiftUI lifecycle closures. |
| Explicit immersive-space lifecycle | LocatingAndDecodingBarcodes/LocatingAndDecodingBarcodesApp.swift:20 |
Makes immersive presentation a scene transition rather than hidden global state. |
| Observable state owner | LocatingAndDecodingBarcodes/AppModel.swift:13 |
Shares feature state across multiple views without moving framework resources into view values. |
| Provider session boundary | LocatingAndDecodingBarcodes/ImmersiveView.swift:14 |
Owns provider lifetime separately from the SwiftUI view tree. |
| Async update consumer | LocatingAndDecodingBarcodes/ImmersiveView.swift:36 |
Consumes provider or event streams in cancellable structured tasks. |
Naming conventions
- Role suffixes are evidence, not decoration: App:
LocatingAndDecodingBarcodesApp; Model:AppModel; View:ContentView,ImmersiveView. - Protocols: no app-defined protocol in the reviewed source.
- Commands use verb-led methods:
playAnimation. - Files generally match their primary type;
Views,Models,Managers,Providers,Components,Systems, andPackagesfolders describe architectural roles where present.
Architecture takeaways
- Treat
LocatingAndDecodingBarcodesAppas the owner of scene declarations, not as the owner of every RealityKit entity created later. - Keep view-local interaction in SwiftUI, but move provider sessions, playback resources, shared game state, or transport state into a stable owner when their lifetime exceeds one render pass.
- Run ARKit providers for the scene lifetime and consume their asynchronous updates in cancellable tasks; map anchors to entities at the boundary.
- Model immersive-space open, transition, and close states explicitly so windows and immersive content cannot drift apart.
- The compact source does not justify adding repository, coordinator, or protocol layers beyond the model, provider, or view boundary the sample actually declares.
Source map
| Source file | Relevant symbols |
|---|---|
LocatingAndDecodingBarcodes/LocatingAndDecodingBarcodesApp.swift:11 |
LocatingAndDecodingBarcodesApp |
LocatingAndDecodingBarcodes/AppModel.swift:13 |
AppModel, ImmersiveSpaceState |
LocatingAndDecodingBarcodes/ContentView.swift:11 |
ContentView |
LocatingAndDecodingBarcodes/ImmersiveView.swift:13 |
ImmersiveView |
LocatingAndDecodingBarcodes/ToggleImmersiveSpaceButton.swift:10 |
ToggleImmersiveSpaceButton |