I would like to use the block-based KVO from Swift 4 to observe changes to a value in UserDefaults
. I am able to do this for observing a key path for WKWebView
's estimatedProgress
but haven't been successful with UserDefaults
because the provided key path isn't what it's looking for. Providing just a String isn't enough (Generic parameter 'Value' could not be inferred), prefixing it with \
isn't enough (Type of expression is ambiguous without more context). What's the correct way to create the KeyPath
to observe a value in UserDefaults
?
observerToken = UserDefaults.standard.observe("myvalue") { (object, change) in
//...
}