views:

241

answers:

1

I'm developing an app that will feature a splash screen fading to the first app page. This splash screen is supposed to seamlessly flow from the Default-X.png image from the app launch. I've got this working great, except for one very special situation.

If the user taps the app icon, then IMMEDIATELY changes orientation, the automatic Default-X.png will come up from the original orientation (as expected), but my programmatically-defined intro image comes up in the new orientation. (I guess this is expected, too, now that I think about it.)

My question is, how can I get the actual launch orientation. NOT the orientation available when the app delegate starts, but the orientation of the device when the app icon is tapped, and therefor the orientation the OS uses to decide on the Default-X.png image.

Thanks.

+1  A: 

I think this question is related to: http://stackoverflow.com/questions/3220989/ipad-launch-orientation-when-flat-issues-in-app-delegate/3389105#3389105

I'm also looking for a solution.

DavidG