Re: Dismissing Open dlog before doc actually opens
Re: Dismissing Open dlog before doc actually opens
- Subject: Re: Dismissing Open dlog before doc actually opens
- From: Roland King <email@hidden>
- Date: Wed, 14 Aug 2013 22:23:11 +0800
On 14 Aug, 2013, at 10:03 PM, Steve Mills <email@hidden> wrote:
>
> There most certainly is not a deeper issue with my code. Run this and you'll see for yourself:
>
> -(IBAction) openDocument:(id)sender
> {
> NSOpenPanel* p = [NSOpenPanel openPanel];
>
> if([p runModal] == NSFileHandlingPanelOKButton) {
> [p orderOut:self];
> // Simulate code that takes 5 seconds to open a document:
> sleep(5);
> }
> }
>
What does that code end up doing? Not order the window out, not order it out until after the 5 seconds have elapsed or what? Not much of an OSX guy but something similar on iOS, with a 5 second piece of work on the main thread, would stop the UI animating until it returned control to the runloop.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
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:
This email sent to email@hidden