I need to watch some value in NSUserDefaults
.
Is there any way to add observer for multiple key paths. For example:
[[NSUserDefaults standardUserDefaults] addObserver:self
forKeyPath:keyPath1&keyPath2
options:NSKeyValueObservingOptionNew
context:nil];
If it can not be done some way like above, any workaround?
Thanks in advance!