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: Lee Ann Rucker <email@hidden>
- Date: Wed, 14 Aug 2013 11:40:00 -0700 (PDT)
- Thread-topic: Dismissing Open dlog before doc actually opens
[p orderOut:self];
// Let the run loop finish so the UI updates - button finishes tracking, window updates, etc
[self performSelector:@selector(documentOpeningStuff:) withObject:p afterDelay:0];
----- Original Message -----
From: "Steve Mills" <email@hidden>
To: "Kyle Sluder" <email@hidden>
Cc: "Cocoa dev" <email@hidden>
Sent: Wednesday, August 14, 2013 7:03:59 AM
Subject: Re: Dismissing Open dlog before doc actually opens
On Aug 13, 2013, at 18:56:20, Kyle Sluder <email@hidden> wrote:
> And for a long time you used to have to keep the mouse button held down
> while navigating a menu hierarchy. Times change.
Let's focus on the question, shall we?
> The fact that -orderOut: didn't dismiss the open panel points at a
> deeper issue with your code that's probably worth investigating.
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);
}
}
--
Steve Mills
office: 952-818-3871
home: 952-401-6255
cell: 612-803-6157
_______________________________________________
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
_______________________________________________
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