UIViewController and splash screen orientation issue on iPad

2010-08-25 Thread Eric Giguere
Hi all I have a small problem here with a small application I'm writing for the iPad. First, I manually show a splash screen. Doing so instead of using the default.png behavior allows controlling the time the spash is shown on screen. To do this, I've found a quite simple example on the net

Re: UIViewController and splash screen orientation issue on iPad

2010-08-25 Thread Kyle Sluder
On Aug 25, 2010, at 7:57 AM, Eric Giguere eric.gigu...@videotron.ca wrote: Hi all I have a small problem here with a small application I'm writing for the iPad. First, I manually show a splash screen. Doing so instead of using the default.png behavior allows controlling the time the

Re: UIViewController and splash screen orientation issue on iPad

2010-08-25 Thread Eric Giguere
Hi Kyle Sure am. Lets call it then the Launch image. We do need to show something if the application is establishing a remote connection. This screen I'm show as a modal view shows up upside down :( I've had that orientation issue with other applications when I'm programmatically creating

Re: UIViewController and splash screen orientation issue on iPad

2010-08-25 Thread Conrad Shultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 8/25/10 4:57 AM, Eric Giguere wrote: The problem is that when I start the application with the Pad upside down, the splash view does not get auto-rotated even though my main view behind it is always showing with the right orientation. I can't

Re: UIViewController and splash screen orientation issue on iPad

2010-08-25 Thread David Duncan
On Aug 25, 2010, at 4:57 AM, Eric Giguere wrote: The problem is that when I start the application with the Pad upside down, the splash view does not get auto-rotated even though my main view behind it is always showing with the right orientation. Thats because the view controller managing

Re: UIViewController and splash screen orientation issue on iPad

2010-08-25 Thread Eric Giguere
Ouch, what a shame. Thanks a lot David. As expected, worked perfectly :) Eric. On 2010-08-25, at 12:35, David Duncan wrote: On Aug 25, 2010, at 4:57 AM, Eric Giguere wrote: The problem is that when I start the application with the Pad upside down, the splash view does not get

Re: UIViewController and splash screen orientation issue on iPad

2010-08-25 Thread David Duncan
On Aug 25, 2010, at 12:27 PM, Dikshith Rai wrote: You can also do this without creating a new view. Just put a sleep() in App delegate Please don't do this in shipping software. Depending on your sleep interval and the time it takes your application to startup, you could end up hitting one

Re: UIViewController and splash screen orientation issue on iPad

2010-08-25 Thread Dikshith Rai
Depending on your sleep interval and the time it takes your application to startup, you could end up hitting one of the watchdog timers and having your application get killed. Oh! Thanks for this information David :-) Regards, Dikshith On 26-Aug-2010, at 1:05 AM, David Duncan wrote: