I let the user make changes to their settings in the settings area of the iphone. During the next network sync i\'d like to send the user changes to the server. But only if the
Observe for changes and call a method on change:
NotificationCenter.default.addObserver( self, selector: #selector(updateStateFromSettingsBundle), name: UserDefaults.didChangeNotification, object: nil )
@objc func updateStateFromSettingsBundle() {}