Re: [newbie]How to pop a window?
Re: [newbie]How to pop a window?
- Subject: Re: [newbie]How to pop a window?
- From: "Bus Mini" <email@hidden>
- Date: Sat, 8 Jul 2006 12:26:44 +0800
Thanks for you advice. Now suppose I have two windows created in nib, one is
the main window which was showed when app started, another is the one I want
it to poped up when I click a button in main window.
And the followed code was called when the button was clicked,
IBOutlet NSWindow *myWindow;
.............
[myWindow showWindows] //this doesn't work
[myWindow display] //this doesn't work either
[myWindow print:self];//this doesn't work either
[myWindow makeKeyAndOrderFront:nil];//this doesn't work either
Must I set something special?
Thanks very much.
On 7/8/06, Uli Kusterer <email@hidden> wrote:
I presume you already know most of this, but since I don't know
what bit youÄre missing, I'll be exhaustive rather than concise:
Look at the AppKit docs at http://developer.apple.com (or on your
hard disk in Xcode's "Help" menu). You need to be familiar with:
* NSButton (and its superclass NSControl) and the "target/action
paradigm", which is how you hook up your button to your code.
* IBOutlet - which is how you can get access to your window from the
object owning your NIB (i.e. your NSDocument or your application
delegate)
* NSWindow - in particular the makeKeyAndOrderFront: (and maybe later
orderOut:) methods.
Cheers,
-- M. Uli Kusterer
http://www.zathras.de
--
Yours sincerely
Mini Bus.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Cocoa-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden