vote up 0 vote down star

Is there any way I get get the size of an NSWindow (in pixels) and display it? So when the person resizes the window the text will change and display the new size.

flag

78% accept rate

3 Answers

vote up 3 vote down check

If you implement the method

- (NSSize)windowWillResize:(NSWindow *)sender toSize:(NSSize)frameSize

on an object you set as the delegate of the window, it will be called whenever the window changes size. From there you can update the text field you use for displaying the size.

link|flag
ok here's what I have: -(NSSize)windowWillResize:(NSWindow*)sendertoSize:(NSSize)frameSize { [length setStringValue:@"thisworks"]; [width setStringValue:@"test"]; return; } (the strings are tests to make sure it works) Everything is connected in IB correctly, it's all saved. But when I run the application it just shows "label" it doesn't say what I told it do. – matt Sep 3 at 16:56
Is the above code in a delegate? Can you update your question with the code you have to provide more context? – fbrereto Sep 3 at 17:29
it's in the window delegate – matt Sep 3 at 18:57
matt: Did you remember to hook up those length and width outlets in IB? If they're not set, you're messaging nil, which does nothing. – Peter Hosey Sep 3 at 20:00
yea, it's all hooked up right. I tried setting the text using awakeFromNib and it worked, but the -(NSSize) doesn't work. How exactly should I set them? – matt Sep 3 at 20:18
show 4 more comments
vote up 2 vote down

What about:

CGSize window_size = my_window.frame.size;
link|flag
vote up 0 vote down

Instead of attempting to handle resizes, you should instead make sure your views' autoresizing masks are set correctly. In Interface Builder, you do this on the Size inspector (⌘3) with the views selected.

If you've lain out an entire view hierarchy without setting their autoresizing masks, you have a bit of tedium ahead of you, but it's not hard (just tedious), and won't take very long. This is why you should do set views' autoresizing masks as you create them.

Once the autoresizing masks are set, the views will resize themselves automatically; unless your interface is very complicated, or any views can go down to zero size, you won't need to intervene.

link|flag
how will that allow me to display the size using an NSTextField? – matt Sep 3 at 18:00
Oh, I thought you were asking to get the size and resize your views with it. Sorry. I endorse Ken's answer. – Peter Hosey Sep 3 at 19:59

Your Answer

Get an OpenID
or

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