Skip navigation.
 
mlRe: [newbie]How to pop a window?
FROM : Uli Kusterer
DATE : Fri Jul 07 20:33:05 2006

Am 07.07.2006 um 19:25 schrieb Bus Mini:
> I have a newbie question. I have a window created in nib, if I want 
> when a
> button is pressed, then that window can pop up like a dialog, but 
> It is not
> a dialog. It is a real windows, have the propertitys what a window 
> should
> has.(ect. can be hiden,minimize....)
>
> Could somebody give me a help? Thanks very much.


  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

Related mailsAuthorDate
ml[newbie]How to pop a window? Bus Mini Jul 7, 19:25
mlRe: [newbie]How to pop a window? Uli Kusterer Jul 7, 20:33
mlRe: [newbie]How to pop a window? Bus Mini Jul 8, 06:26
mlRe: [newbie]How to pop a window? Uli Kusterer Jul 8, 12:41
mlRe: [newbie]How to pop a window? Bus Mini Jul 8, 16:44
mlRe: [newbie]How to pop a window? I. Savant Jul 8, 17:33
mlRe: How to pop a window? Bus Mini Jul 8, 17:53
mlRe: [newbie]How to pop a window? Shawn Erickson Jul 8, 18:27
mlRe: [newbie]How to pop a window? Uli Kusterer Jul 8, 21:25
mlRe: How to pop a window? Bus Mini Jul 9, 16:33