Launch in landscape mode and make your Default.png be landscape.
From the docs:
How do I start my application in landscape mode?
To start your application in landscape
mode, edit your Info.plist file to add
the UIInterfaceOrientation key with
the appropriate value
(UIInterfaceOrientationLandscapeRight
or
UIInterfaceOrientationLandscapeLeft),
as shown in Listing 1. This provides a
hint to the system to set the
orientation of the status bar
appropriately at launch time.
Listing 1: Starting your application in landscape mode
<key>UIInterfaceOrientation</key>
<string>UIInterfaceOrientationLandscapeRight</string>
Check this for more.