UPGRADE YOUR SKILLS: Learn advanced Swift and SwiftUI on Hacking with Swift+! >>

SOLVED: How to pass data from AppDelegate down into View

Forums > macOS

Good morning

Found only older examples of how to pass down data from AppDelegate which all don't work of course anymore (o;

What is the correct way to publish data from an AppDelegate function to handle it in a View?

thanks in advance richard

3      

Simple and effective...just declare the var outside of App so it can be passed down inside App but also modified within APpDelegate (o;

class Address: ObservableObject {
    @Published var name = ""
    @Published var street = ""
    @Published var number = ""
    @Published var address2 = ""
    @Published var zip = ""
    @Published var city = ""
}

var address = Address()

@main
struct BarcoderApp: App {
    @NSApplicationDelegateAdaptor private var appDelegate: AppDelegate

    var body: some Scene {
        WindowGroup {
            ContentView(address: address)
        }
    }
}

So now address is updated within the View either during launch but also when already running...

There might be another solution..but as it works I don't care (for now ;o)

3      

Hacking with Swift is sponsored by Essential Developer

SPONSORED 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! Hurry up because it'll be available only until April 28th.

Click to save your free spot now

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

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.