Tagged Questions
The nswindowcontroller tag has no wiki summary.
7
votes
3answers
360 views
Is it possible to bring window to front without taking focus?
I am working on an application for my personal usage that will remind me of stuff at regular intervals and/or will require text entry. Hence this popup window has an NSTextField.
If the window pop's ...
7
votes
2answers
1k views
Why isn't my sheet attached to the window it's run for?
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 ...
6
votes
2answers
723 views
NSWindowController clarification of understanding
I have used NSWindowController in projects several times, and feel like I have a (very)rough grasp of the concepts behind this important class. What I would like to do with this post is to ...
3
votes
1answer
328 views
Release a NSWindowController when the window is closed
I'm building a Cocoa application and have a question about using window controllers. The idea is that if the user selects New from the menu bar, an instance of MyWindowController which is a subclass ...
3
votes
1answer
366 views
When should I extend NSDocument and when should I extend NSWindowController?
I've an application that holds a main window with a list of items, and from that window an undetermined number of windows can be opened. Each of those windows can hold several instances of a model ...
3
votes
2answers
501 views
MVC in a Cocoa document-based application
I'm going through a refactoring and reorganization of my application at the moment. I've realized that some of the separation between models and views, and their controllers has diminished and I wish ...
3
votes
3answers
2k views
Why do I have to call showWindow on my NSWindowController twice on 10.5?
I've got a subclass of an NSWindowController that I'm using to load a window from a nib and show it on the screen. Below is the code that is called when I want to show the window. On 10.6 when ...
2
votes
1answer
74 views
Moving array controller initialization from nib to code breaks table view bindings
My window controller subclass is the nib's owner.
I instantiate my array controller, in code, in my document subclass. Both the document and window controller use it in code.
I bind table columns ...
2
votes
1answer
150 views
Bring all NSDocument windows to front when opened
In most systems, the default behaviour for "open a new window" is that it appears at the front. This doesn't happen in Cocoa, and I'm trying to find the "correct" way to make this standard behaviour. ...
2
votes
2answers
446 views
Show new window from status menu
How on earth I can show new window - from my status menu application?
I have status menu application and method called
- (IBAction) itemClicked: (id)sender;
I want to open new window after click ...
2
votes
2answers
432 views
How to get notified when NSWindow closes
how can I take notice when an NSWindow should or will get closed? I'd like to have something like the windowWillClose. Unfortunately NSWindowController does not have as much convenient methods as ...
2
votes
2answers
151 views
Should NSWindowController always be the superclass of a window controller?
When reading Apple's Cocoa tutorial, the window controller is just a regular class and while understand that this is perfectly fine I suppose, wouldn't it be better to subclass NSWindowController?
If ...
2
votes
2answers
1k views
How do I open an NSWindow and have the window selected and in focus?
I am trying to open a NSWindow using the following code:
NSWindowController *window = [[NSWindowController alloc] initWithWindowNibName:@"MainWindow"];
[window showWindow:nil];
The window opens ...
2
votes
2answers
1k views
How to close a window (unload a NIB)?
I have a custom NSWindowController subclass that loads a NIB file during initialization like this:
self = [super initWithNibNamed:@"myNib"];
if (self != nil) {
[self window];
}
The nib contains ...
1
vote
1answer
88 views
NSTableView with plist file
I am very new to mac app development. so just doing some practical exercise.
I want to create a tableview which display data from my plist file.
I have one windowcontroller class and window ...
1
vote
2answers
88 views
NSMutableArray as an Instance Variable
I have a instance variable which is a NSMutableArray
@interface SummaryWindowController : NSWindowController {
NSMutableArray *aBuffer;
The NSMutableArray is set using this method (called from ...
1
vote
1answer
78 views
Sharing an object for binding (specifically an NSDocument) between various views / nibs
I'm writing an application for OSX (Lion) using Xcode 4.
Hitting a bit of a wall with this one and the internet has thus-far proved not particularly helpful.
I have a document defined, as well as ...
1
vote
0answers
128 views
NSDocument window controller and outlet instantiation
I have what it seems to be a weird problem with an instance of a document window controller. I have a document-based application with a custom window controller inited from overridden ...
1
vote
2answers
161 views
cocoa release nswindowcontroller
I am loading a window with it's controller from a window nib file. The window has a "release when closed" option enabled. How could i release the controller as soon as the window closes?
Thank you
1
vote
1answer
56 views
Have a control selected in a loaded view
I have a question about using NSViewController and switching between views. I have a Cocoa application where I have a window. The idea with the window is that it will display a number of views one by ...
1
vote
1answer
199 views
-[NSWindowController window] retaining window when NSWindowController initialized with window?
In an application (OS X 10.6.7) I have a NSWindowController subclass which is initialized with -[NSWindowController initWithWindow:]—i.e., I have already created the window in code; I'm not loading it ...
1
vote
1answer
127 views
NSWindow set frame higher than screen
I need help. I have an app like Adium with vertical sliders. But my app change the window height, depending on content. In case if the Screen height less than my app'a window height my window reduces ...
1
vote
2answers
257 views
Memory Leak with NSWindowController's showWindow:
I've been struggling with the following leak for a while now. I've narrowed it down through Instruments to the following block of code:
- (NewMessageWindowController ...
1
vote
1answer
307 views
NSViewController or NSWindowController to manage nib
As far as good practices and resource usages (memory, etc.), Which is preferable method to use NSViewController or NSWindowController if either method satisfied what I try to do. Opening another nib ...
1
vote
1answer
240 views
Open new NSWindowController
i am new to Cocoa programming.
I have a main NSWindowController and would like to open a 2nd sub NSWindowController. can't seem to find the code anyway.
Can anyone help?
1
vote
2answers
543 views
How to give focus to NSWindow loaded from NIB?
I'm using NSWindowController to load a window from a NIB. However, when I call showWindow:, the window is visually topmost, but the focus remains where it was (instead of moving it to the new window).
...
1
vote
1answer
1k views
NSWindowController and NSViewController
Probably a pretty simple question, but I can't get my head around it.
I would like to create some sort of wizard: An NSWindow appears as a sheet from another NSWindow and should show three different ...
1
vote
1answer
302 views
NSWindowController subClass - Init is Called twice
im very new in cocoa development and I'm trying to load a Window.
I will explain my problem.
When the user click the menuItem I use the following code to load my window
if ( ...
1
vote
1answer
731 views
How show sheet loaded from xib? (MacOSx)
I have a xib file whit only a NSPanel in it, I'm trying to show this panel as modal sheet (with beginSheet:modalForWindow:modalDelegate:didEndSelector:contextInfo:). The file owner for this xib is a ...
1
vote
1answer
238 views
NSWindow created in IB won't show modally in the application
I have an application that when pressing a button it should show a modal window. I have some questions about it but I'm going to narrow it to what it's giving me a headache.
I want to add that I'm ...
1
vote
1answer
275 views
Cocoa Key event problem
I'm trying to build my first cocoa application. done some iPhone developing before. I have a hard time understanding how to layout my project.
i making a Pong game and my current design is to ...
1
vote
1answer
1k views
How to use NSWindowController?
I'm looking in to using NSWindowController and I just can't think how to get it working. How do I start using it?
1
vote
2answers
113 views
TextFields not loading in subclass of NSWindowController
I am working on a second preferences style panel (but preferences related to a specific document.) My myDocument file is getting a little large so I decided to try using a separate subclass ...
0
votes
0answers
9 views
NSDocument, occasional crash when closing windows
I have a document-based application with two windows for each document, and an NSWindowController subclass for each of them.
My problem is that I regularly have an EXC_BAS_ACCESS error in the ...
0
votes
1answer
48 views
Manage multiple styles of main window in cocoa
What's the best way to switch between multiple styles of main windows in cocoa?
I mean something like iTunes with its mini-player view and its normal sized view.
I want to layout different nib-files ...
0
votes
1answer
13 views
cannot display value passed by MainWindow on NSWindow?
Here's my problem:
I have a MainWindow.xib, Window1.xib, Window1Controller.h, Window1Controller.m
I can display Window1 from MainWindow, but the passing value does not display on Window1, I know that ...
0
votes
0answers
9 views
NSPrintPanel showing on zero index windowController
Strange thing. I have a subclass of NSDocument that can have one or two windowControllers (no more than two). I've discovered that the print panel will show up on what ever windowController is at ...
0
votes
1answer
49 views
NSWindow setFrame not working in Lion?
I've been killing myself over this issue in Cocoa and Lion and was wondering if anyone has come across this issue and (hopefully) found a solution.
I've got a very simple project (code can be ...
0
votes
1answer
35 views
Best Window Controller Method For Initializing User Defaults
There is a slight delay when initializing checkboxes in my window when reading user defaults and setting them in windowDidLoad. Is there a better place to do this?
This is the code in my preference ...
0
votes
1answer
51 views
How to tell when NSPanel gets focus or becomes key?
I am writing a Cocoa/Objective-C app in XCode4, and I need to know when my preferences panel is opened. I need some callback like windowDidBecomeKey; I attempted to follow the solution provided in ...
0
votes
1answer
48 views
Load nib with NSWindowController don't have effect
In my app i have Preferences window. To load this window i use this code
- (IBAction)showPrefWindow:(id)sender {
NSWindowController * windowController = [[NSWindowController alloc] ...
0
votes
1answer
61 views
How to move an NSWindow without moving child NSWindows
I have a main window that is the center of my application. For different functions I open a child window to handle certain specialized functions. I want all of the windows to move independently, but ...
0
votes
1answer
64 views
NSWindowController never deallocated
I have a NSWindowController subclass, and in the windowWillClose: notification I send autorelease to the window controller. But still dealloc is never called. I have no timers in the class, so that's ...
0
votes
1answer
46 views
Window is not releasing when switching to another window
I am creating a Mac application in which I have mainwindow with some buttons.
When I click button it will open a DetailWindow with NSTableview. Every buttonclickevent change the data in NSTableView. ...
0
votes
1answer
90 views
awakeFromNib got called twice for my WindowController, is that correct?
I was told that awakeFromNib should be called only once so I was quite surprised to see it was called twice for my WindowController. I use IB to create my WindowController in MainMenu.xib, but to tell ...
0
votes
1answer
159 views
NSWindow deprecated in NSWindowController in OSX Lion
I have a subclass defined as follows,
#import <Cocoa/Cocoa.h>
@interface ICMusicBrowserWindowController : NSWindowController
{
}
I then create an instance of the above subclass as follows
...
0
votes
1answer
120 views
NSWindowController shows new window
I am very new to mac programming. Just started before 3 days.
I am making a sample app in which i have one button in main window
I am using this code to open a new wndowcontroller
...
0
votes
1answer
153 views
Mac OS X showWindow problem: NSWindow appears only once
I have a Mac OS X program visible only in status bar that must show a preferences window.
I have this IBAction:
- (IBAction)showPreferences:(id)sender {
[self.preferencesWindowController ...
0
votes
2answers
151 views
Cocoa: get window in windowDidLoad in controller
My NSWindowController has this code:
- (id)init {
[self initWithWindowNibName:@"MyWindow"];
[self loadWindow];
return self;
}
- (void)windowDidLoad
{
[super windowDidLoad];
...
0
votes
1answer
51 views
NSUserDefaults not working when opening a nib programmatically
In the window which shows up at launch and NSUserDefaults works great with the initial window. If i open the same nib file again programmatically with this code:
NSWindowController *controller = ...