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

Syncing UserDefaults with Zephyr Causes "undefined" behavior

Forums > Swift

I have been using Userdefaults with my app for a long time. I've wanted to syncronize them and saw a forum post here about using Zephyr. I noticed that it has recently been updated, so was excited to try it.

As soon as I added it into my app, I started seeing the following warning -

Publishing changes from within view updates is not allowed, this will cause undefined behavior.

This is showing up in my class that I defined to hold all the various settings for my app.

My class is an ObserveableObject. Here's the code that throws the purple warning:

    init() {
        notificationSubscription = NotificationCenter.default.publisher(
            for: UserDefaults.didChangeNotification).sink { _ in
                   self.objectWillChange.send(self) // <====== Here's the warning
        }
        Zephyr.debugEnabled = true // Must be called before sync(_:)
        Zephyr.sync()
    }

Has anyone else tried Zephyr with this use case? And if so, have you figured out how to remove this warning?

2      

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.