I made a settings panel for my app with a slider that you can set to "Erase preferences on next launch" (inside the main iPhone settings app). In my app's delegate, I made it so that applicationWillEnterForeground would check if the setting switch was set in the preferences and clear my settings with:
[NSUserDefaults standardUserDefaults] setPersistentDomain:[NSDictionary dictionary] forName:[[NSBundle mainBundle] bundleIdentifier]]; if necessary.
My question is: If viewDidLoad and viewDidAppear in my view controller don't run after I make the settings change due to iOS 4's fast app switching (the view is still loaded when I come back from the settings app), how can I alert these view controllers that the settings were reset so they can re-load all of their data? If only there was a way to call [MainViewController initData] from the delegate but sadly that can't be done. It seems like unless there is an action that happens in the view controller, there is no way for it to know to check if the settings had been reset.
Any help would be much appreciated.