I managed to get MainMenu.nib to load using this code when created as
the standard Cocoa template in XCode. I had to put it under Debug
though. I suspect that using an .xib doesn't work with this call.
Note that at the moment the build doesn't generate an .app structure
(with Contents/Resources etc.) - the CDT currently just compiles the
executable under the Debug/ tree. We should look to make that easier
at some point in the future though...
> - ObjectivEClipse doesn't seem to handle Objective C++ files with
> the .mm extension. They go to XCode if you try to open them. Is this
> an oversight or on purpose since maybe the parser doesn't handle
> Objective C++ yet?
The problem is that the C parser and C++ parser are two entirely
different beasts in CDT. In order to build upon a standard C set, the
parser doesn't extend the C++ parser at the moment. As a result, it
doesn't try to open .mm files. I'm not sure what the best way to solve
this in the future - we might have to have an abstract parser and then
subclassed delegates which then handles both parts. However, for the
short term, the plan is to focus on the C subset of Objective C
support.
Alex