Is there any way that using the NSUserDefaultsDidChangeNotification I can be notified of changes made to the general device settings?
I am not sure what settings are being referred to here. Does it talk only about the app specific settings or the overall device settings.
What I want to do exactly is this: I want a notification if the user turns on/off the wifi or bluetooth or any other setting for that matter. Is it possible that I can do that using NSUserDefaultsDidChangeNotification??
As of now what I could think of was to create a custom notification which is fired everytime a variable's value is changed. however, I will have to continuously poll for the setting's value in that case.