setAutoresizingMask from code
setAutoresizingMask from code
- Subject: setAutoresizingMask from code
- From: Aby <email@hidden>
- Date: Sat, 2 Feb 2008 12:27:21 +0100
Hi,
I have created one controller for my window which is a subclass of
NSWindowController
and added one button to the window and added the following code to the
Action event.
NSBox *newBox = [[NSBox alloc] initWithFrame:NSMakeRect(10.0f, 10.0f, 200.0f,
200.0f)];
[newBox setBoxType:NSBoxPrimary];
[myBox setAutoresizingMask: NSViewHeightSizable | NSViewWidthSizable ];
[[[self window] contentView] addSubview:newBox];
this will add the box to the content view of the window. but not he
autoresizing mask.
but if I set the auto resizing from the IB for any control on the Window say
for this button then the above code works fine.
How to set the resize state on from code.
Regards
Tom.
_______________________________________________
Cocoa-dev mailing list (email@hidden)
Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden