Re: UIViewController and splash screen orientation issue on iPad

2010-08-25 Thread Dikshith Rai
can wrote: > 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

Re:UIViewController and splash screen orientation issue on iPad

2010-08-25 Thread Dikshith Rai
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:(NSDictio

Re:UIViewController and splash screen orientation issue on iPad

2010-08-25 Thread Dikshith Rai
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:(NSDictio

Re: Drag and drop images to other application using NSFilesPromisePboardType

2009-02-08 Thread Dikshith Rai
The reason I used only NSFilesPromisePboardType and not NSFilenamesPboardType is:My app data is stored as a package. Instead of extracting image from the package while I initiate dragging, I do it when the destination asks for the data that is promised to it. I personally feel NSFilesPromi

Drag and drop images to other application using NSFilesPromisePboardType

2009-02-04 Thread Dikshith Rai
Hi All, I am trying to drag files from my application to iPhoto,Mail,Preview etc (any application that accepts image files). I am using NSFilesPromisePboadType.The reason for using NSFilesPromisePboadType is application data is stored as a package and I need to extract image from the pack