You don't need to store another reference to the App Delegate. Any time you need it, just call:
Code:
MyAppDelegate* delegate = (MyAppDelegate*)[[UIApplication sharedApplication] delegate];
And replace MyAppDelegate with whatever the class name for your App Delegate is.