TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

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 Superwall.

SPONSORED Superwall lets you build & test paywalls without shipping updates. Run experiments, offer sales, segment users, update locked features and more at the click of button. Best part? It's FREE for up to 250 conversions / mo and the Superwall team builds out 100% custom paywalls – free of charge.

Learn More

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.