문제

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 changes are made.

But how do I know when the user has made a change within the settings area?

If I can, I'd like to avoid an option of always sending the information regardless if changed or not or getting the info from the server first and updating if different from the user defaults.

Is there a nice and elegant way of resolving this problem? Thank you for your help!

A week later and no answers... Is this question too hard or it doesn't make any sense at all?

도움이 되었습니까?

해결책

Ah silly me! Here we go with an elegant way. Search for AppPrefs in the Apple Documentation within XCode and it'll show an example app which does exactly what you want to do. Just compile and run! It makes use of the NSUserDefaultsDidChangeNotification.

This is the code being used to register an observer:

[[NSNotificationCenter defaultCenter] addObserver:self
                                         selector:@selector(defaultsChanged:)
                                             name:NSUserDefaultsDidChangeNotification
                                           object:nil];

Old answer:

It doesn't look like as if you could get a modification date out of the NSUserDefaults. So far I only can think of this way:

NSUserDefaults *previousDefaults = [someInstance previousUserDefaults];
NSUserDefaults *currentDefaults = [NSUserDefaults standardUserDefaults];

if([previousDefaults isEqualToDictionary:currentDefaults]) 
{
    [someOtherInstance sendModifiedUserDefaultsToServerWithDefaults:currentDefaults];
    [yetAnotherInstance saveModified]
}

You have to save the user defaults yourself as dictionary to disk when the app is launched the first time: your default values. Then, everytime the app is opened you compare those two dictionaries. If they

다른 팁

It's not that the question is too hard, it's just that there's not a simple way to do what you're asking. NSUserDefaults doesn't record a "last modified" date for each app's settings, at least as far as I can tell, so if the user changes some settings using the Settings app, there's not a good way to detect that other than to look at all the settings.

If you really need to do this, I think your best bet is to read the settings that you're interested in syncing into some data structure and calculating some sort of hash or checksum based on that structure. Compare that value to the value that you calculated the last time the app ran, and sync with the server if it's different. You can store that value in NSUserDefaults if you want, but make sure that you don't include it in the calculation.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top