You need to write code per control anyway (to handle user changes).
You may need to write additional code per changeable property, depending how you app is set up.
I'd suggest using NSNotificationCenter, and sending a "something-changed" notification when one of your data properties changes.
When your control is touched you set a property on some data-storage object:
-(IBAction)grommetSwitchPress:(UISwitch*)sender
{
self.userData.wantsGrommets = sender.on;
}
That data-storage class will define a property:
@interface UserData : NSObject
{
}
@property (nonatomic, assign) BOOL wantsGrommets;
with a custom property setter that tests if the value has changed:
-(void)setWantsGrommets:(BOOL)wantsThem
{
if (wantsGrommets != wantsThem) // compares current property value with incoming
{
wantsGrommets = wantsThem;
[[NSNotificationCenter defaultCenter]
postNotificationName:NOTIFY_SOMETHING_CHANGED
object:self];
}
}
In some header you'll define the notification message:
#define NOTIFY_SOMETHING_CHANGED @"somethingChanged"
and it's up to you to decide where to put the code in your app that listens for NOTIFY_SOMETHING_CHANGED, eg:
- (void)viewDidLoad:(BOOL)animated
{
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(somethingChanged:)
name:NOTIFY_SOMETHING_CHANGED
object:nil];
}
In the somethingChanged: method, you could save data to NSUserDefaults, for example.
I would advise against "asking the user to save the information when something is changed on any (or all) the controls." It is bothersome to ask the user if they want their own changes saved … of course they do. If you want to give them a chance to back out, then provide a "Revert" or "Reset" button instead.