Splash screen on osx app

Im using xcode 6.2 and for the life of me I can’t figure out how to set up a splash screen when my application launches. Does anybody have some insight or can they point me to something? I checked the developers site but the example they are showing is only for an IOS app not OSX app.

Just have a window set to show at launch, and set a timer to close it.

Shane, can you give me more details? I don’t know how to do the timer to close and then pull open the main window?

Thanks
Pete

You set up an NSTimer to fire after a certain time, and when it does, it calls a method. That method would then order out the first window and show the main one.