Just add an ivar to your app delegate, create a property for it, and initialize it in appDidFinishLaunching. Then you can get your app delegate via UIApplication. UIApplication is a singleton object which means only one instance exists at any one time. You get this shared instance by calling sharedApplication.
Code:
UIApplication *app = [UIApplication sharedApplication];
A UIApplication object has a delegate.
Code:
UIApplication *app = [UIApplication sharedApplication];
YourAppDelegateClassName *appDelegate = app.delegate;
AVAudioPlayer *player = appDelegate.globalAudioPlayer;
Hope that helps. All you need to do is add an ivar, create a property for it, and initialize it in appDidFinishLaunching. If you don't know what a property is, look at Brian Slick's guide to properties, you can find the link in his signature.
__________________
If you are looking for a quality developer, I'm your man. Give me a PM if you are interested.
New app - See screenshots and details at
www.globaclock.com.
If you want to thank me, click the link. Every click counts. If you want to do more, buy my app. A link is available on my website. Thanks.