Re: Expanding Window/View

2008-06-09 Thread Andrew Farmer
On 09 Jun 08, at 21:07, SD wrote: resize the window (is there a way to do this nicely like System Preferences does) Yep. -[NSWindow setFrame:display:animate:]. CoreAnimation can probably do the job too, but it's unnecessary if all you want is a smooth resize. ___

Re: Expanding Window/View

2008-06-09 Thread j o a r
On Jun 9, 2008, at 9:07 PM, SD wrote: I'm going to be creating a Cocoa ui that will need to be able to display, side-by-side, a variable number of copies of the same view (ie: the view will have labels, and text fields and buttons but each view will show different data). See:NSColle

Expanding Window/View

2008-06-09 Thread SD
Hey all, I'm going to be creating a Cocoa ui that will need to be able to display, side-by-side, a variable number of copies of the same view (ie: the view will have labels, and text fields and buttons but each view will show different data). Is there an easy and nice way to do this in Cocoa