Re: Why would NSViewController loadView fail?

2009-08-31 Thread Eric Gorr
On Aug 28, 2009, at 4:36 PM, Eric Gorr wrote: I am pretty sure I've got my .xib setup correctly, but when I call loadView on my View Controller, my application crashes. Unfortunately, I am not getting any useful information out of the crash. The only thing I appear to have is a stack

Re: Why would NSViewController loadView fail?

2009-08-31 Thread Kyle Sluder
On Mon, Aug 31, 2009 at 12:26 PM, Eric Gorrmail...@ericgorr.net wrote: Building and running it on Snow Leopard causes it to crash horribly. Try reopening/resaving your nib in the latest Interface Builder? --Kyle Sluder ___ Cocoa-dev mailing list

Re: Why would NSViewController loadView fail?

2009-08-31 Thread Jonathan Hess
On Aug 28, 2009, at 1:36 PM, Eric Gorr wrote: I am pretty sure I've got my .xib setup correctly, but when I call loadView on my View Controller, my application crashes. Unfortunately, I am not getting any useful information out of the crash. The only thing I appear to have is a stack

Re: Why would NSViewController loadView fail?

2009-08-31 Thread Eric Gorr
On Aug 31, 2009, at 3:58 PM, Kyle Sluder wrote: On Mon, Aug 31, 2009 at 12:26 PM, Eric Gorrmail...@ericgorr.net wrote: Building and running it on Snow Leopard causes it to crash horribly. Try reopening/resaving your nib in the latest Interface Builder? Thanks. I did try that, but it

Re: Why would NSViewController loadView fail?

2009-08-31 Thread Eric Gorr
On Aug 31, 2009, at 4:54 PM, Jonathan Hess wrote: On Aug 28, 2009, at 1:36 PM, Eric Gorr wrote: I am pretty sure I've got my .xib setup correctly, but when I call loadView on my View Controller, my application crashes. Unfortunately, I am not getting any useful information out of the

Re: Why would NSViewController loadView fail?

2009-08-31 Thread Jonathan Hess
I would try running with zombies. It sounds like one of the objects loaded by the NIB file is being over released. Jon Hess On Aug 31, 2009, at 1:55 PM, Eric Gorr wrote: On Aug 31, 2009, at 3:58 PM, Kyle Sluder wrote: On Mon, Aug 31, 2009 at 12:26 PM, Eric Gorrmail...@ericgorr.net

Re: Why would NSViewController loadView fail?

2009-08-31 Thread Corbin Dunn
On Aug 31, 2009, at 1:59 PM, Jonathan Hess wrote: I would try running with zombies. And now that you have SnowLeopard, this should be the first thing you (meaning, the collective of Cocoa programmers out there) should do: In Xcode: Run - Run with Performance Tool - Zombies Then,

Re: Why would NSViewController loadView fail?

2009-08-31 Thread Eric Gorr
On Aug 31, 2009, at 5:06 PM, Corbin Dunn wrote: On Aug 31, 2009, at 1:59 PM, Jonathan Hess wrote: I would try running with zombies. And now that you have SnowLeopard, this should be the first thing you (meaning, the collective of Cocoa programmers out there) should do: In Xcode:

Why would NSViewController loadView fail?

2009-08-28 Thread Eric Gorr
I am pretty sure I've got my .xib setup correctly, but when I call loadView on my View Controller, my application crashes. Unfortunately, I am not getting any useful information out of the crash. The only thing I appear to have is a stack trace, but I am not sure what it is telling me.