vettedk asked:What is the best way to call your MGPreferences? Your example is the main delegate, I have the pref nib separate from the mainmenu nib. When I call the preferences I load the nib, and another call to it, keeps letting more pref windows open. By the way you must be a machine, I cant imagine supporting all the apps you have on the app store! Thanks for the MGPreference tutorial also!



-(IBAction)showPreferences:(id)sender { if (!preferencesController) { preferencesController = [[PreferencesController alloc] init]; } [[preferencesController window] center]; [preferencesController showWindow:self]; }