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 String Catalog.

SPONSORED Get accurate app localizations in minutes using AI. Choose your languages & receive translations for 40+ markets!

Localize My App

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.