Re: nib loading / displaying question.

2008-12-16 Thread aaron smith
Hey bill, yeah I came to that same comclusiong. It's probably not worth leaving that in memory. Thanks -A On Sun, Dec 14, 2008 at 9:43 AM, Bill Bumgarner b...@mac.com wrote: On Dec 13, 2008, at 11:56 PM, aaron smith wrote: Ah, yeah that was it. And I had the release when closed box checked in

RE: nib loading / displaying question.

2008-12-16 Thread Jeff Laing
How many times will the user display the about panel in an average session of working with your app? Most likely, the answer is once. At the risk of being provocative, I'd say the answer is closer to zero. As such, it's a premature optimisation to worry about it, and we all know Apple's

Re: nib loading / displaying question.

2008-12-16 Thread aaron smith
good point! On Tue, Dec 16, 2008 at 8:49 PM, Jeff Laing jeff.la...@spatialinfo.com wrote: How many times will the user display the about panel in an average session of working with your app? Most likely, the answer is once. At the risk of being provocative, I'd say the answer is closer

Re: nib loading / displaying question.

2008-12-14 Thread Bill Bumgarner
On Dec 13, 2008, at 11:56 PM, aaron smith wrote: Ah, yeah that was it. And I had the release when closed box checked in IB, which was causing it to crash. Unchecked that and we're all good. Sort of. How many times will the user display the about panel in an average session of working with

Re: nib loading / displaying question.

2008-12-13 Thread Rob Rix
It sounds like you’re looking for [aboutPanel makeKeyAndOrderFront: self];. Rob On 14-Dec-08, at 2:38 AM, aaron smith wrote: hey all, really quick question. I'm messing around with loading nib's from the main bundle. It's pretty basic. -I've got a custom nib called About that shows when

Re: nib loading / displaying question.

2008-12-13 Thread aaron smith
Ah, yeah that was it. And I had the release when closed box checked in IB, which was causing it to crash. Unchecked that and we're all good. Thanks Rob, sorry for the newb question. On Sat, Dec 13, 2008 at 11:53 PM, Rob Rix rix@gmail.com wrote: It sounds like you're looking for [aboutPanel