Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a NIB which contains two windows, one is the app's main window visible at launch and the other is a custom sheet (and therefore not visible at launch). When the sheet is required my controller calls:

[NSApp beginSheet: sheetWindow modalForWindow: mainWindow modalDelegate: self didEndSelector: @selector(didEndSheet:returnCode:contextInfo:) contextInfo: nil];

which displays the sheet window and starts a modal session, but the window has a standard Aqua title bar, is not 'connected' to the main window and can be moved around just like a regular window. Needless to say, this is not desirable :-). Why doesn't the sheet window "pop out" of the window it's run for, as sheets usually do when begun in this fashion?

I had wondered whether the fact that I was beginning the sheet inside the controller's -awakeFromNib might have an effect, so I moved the sheet to a button's action I could trigger later. This didn't change the behaviour. I haven't thought of anything else to try. I'm targeting the 10.5 SDK, using Xcode 3.1.

Edit: so it looks like I've created a modal dialog; sheets and app-modal dialogs are both started with the -beginSheet:modalForWindow:modalDelegate:didEndSelector:contextInfo: method. But how do I indicate that my window should be a sheet and not a modal dialog?

share|improve this question
Check that mainWindow is not nil. – Nathan Kinsinger Mar 22 '09 at 16:48
I can't see anything wrong about it, maybe some context could help. – Georg Schölly Mar 22 '09 at 16:48
You should make that an answer, Nathan. It's almost certainly right. – Chuck Mar 22 '09 at 16:51
I agree with Chuck :-). Nathan, answer that and I'll upvote and accept - thanks for your help! – Graham Lee Mar 22 '09 at 16:58
1  
Also, see Renaud Pradenc's answer below about the "Visible at launch" setting in the nib file. – Monolo Aug 4 '11 at 18:17

2 Answers

up vote 12 down vote accepted

If mainWindow is nil then the sheet will be displayed as a window/dialog.

share|improve this answer

This happened to me a couple of days ago:

  • You forgot to set the window outlet of your window controller (File's owner of the Nib file). As Indicated by Nathan, you may see that the -[NSWindowController window] method returns nil.
  • You must also uncheck the Visible at launch option of the sheet.
share|improve this answer
6  
"Visible at launch" turned out to be my problem - the sheet appeared at the correct time, but disconnected from its window, and would not disappear despite my orderOut: call. Thanks for posting this! – Adam Preble Jun 28 '09 at 17:14
9  
"Visible at launch" was indeed my problem, too. Very useful answer. – Monolo Aug 4 '11 at 18:16
2  
Visible at launch was my problem too! – logancautrell Oct 24 '11 at 3:26
Visable at launch... indeed it was my problem. – Hackmodford Apr 25 '12 at 20:00
Another one for visibleAtLaunch. How very odd. In my case once the dialogue was closed and re-opened, it was attached to the correct window. Thanks for this answer. – djbp Jan 15 at 9:03
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.