Hi Eric,

> Doing so instead of using the default.png behavior allows controlling the 
> time the spash is shown on screen

You can also do this without creating a new view. Just put a sleep() in App 
delegate
- (BOOL)application:(UIApplication *)application 
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {  

sleep(<some interval>)

return YES;
}

This will delay the redrawing of your view. 

Why don't you try adding separate splash screens for different orientation
1) Default-Portrait.png 768w x 1004h
2)Default-Landscape.png 1024w x 748h [You can be used instead of specific right 
or left  images ] 

These two should be good. If you want to be precise and support all the 
orientation then try including...

3)Default-PortraitUpsideDown.png 768w x 1004h 
4)Default-LandscapeLeft.png 1024w x 748h
5) Default-LandscapeRight.png 1024w x 748h

I guess you do not want to use multiple images... But this should work  fine.
HTH:-)



-----------------------------------------------
Robosoft Technologies - Come home to Technology

Disclaimer: This email may contain confidential material. If you were not an 
intended recipient, please notify the sender and delete all copies. Emails to 
and from our network may be logged and monitored. This email and its 
attachments are scanned for virus by our scanners and are believed to be safe. 
However, no warranty is given that this email is free of malicious content or 
virus.

_______________________________________________

Cocoa-dev mailing list (Cocoa-dev@lists.apple.com)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com

This email sent to arch...@mail-archive.com

Reply via email to