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      

BUILD THE ULTIMATE PORTFOLIO APP Most Swift tutorials help you solve one specific problem, but in my Ultimate Portfolio App series I show you how to get all the best practices into a single app: architecture, testing, performance, accessibility, localization, project organization, and so much more, all while building a SwiftUI app that works on iOS, macOS and watchOS.

Get it on Hacking with Swift+

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.