Re: sudden errors - fixed

2012-02-28 Thread H. Miersch
On 28. Feb 2012, at 10:01, Roland King wrote: > Move the ViewController import into the AppController.m file and put > > @class ViewController; > > instead. that fixed the appcontroller, thanks. looks like i have a lot to learn... ___ Cocoa-dev ma

Re: sudden errors

2012-02-28 Thread Alexander Spohr
Is ViewManager.h still in your projects file list? Am 28.02.2012 um 10:45 schrieb H. Miersch: > > i just ran a little test: i went into my appcontroller.h and turned the > #import "ViewManager.h" line into a comment, then tried to build. result: > EXACTLY the same errors. it's like that line

Re: sudden errors

2012-02-28 Thread Peter
I'd suggest that you check that the target for your ViewManager .h and .m files is (still) correctly set. Get info on the files in XCode (in XCode 3 using a ctrl-click on the file) and check the target. Am 28.02.2012 um 10:45 schrieb H. Miersch: > > i just ran a little test: i went into my ap

Re: sudden errors

2012-02-28 Thread Roland King
you're importing AppController.h in ViewManager.h and vice-versa, I assume you just added that, or just put the ViewController instance inside AppController. So when you import ViewController it imports AppController (before ViewController is defined) which doesn't reimport ViewController (becau

Re: sudden errors

2012-02-28 Thread H. Miersch
i just ran a little test: i went into my appcontroller.h and turned the #import "ViewManager.h" line into a comment, then tried to build. result: EXACTLY the same errors. it's like that line isn't even there. WTF? ___ Cocoa-dev mailing list (Cocoa-dev

Re: sudden errors

2012-02-28 Thread H. Miersch
On 28. Feb 2012, at 0:54, Keary Suska wrote: > Are you saying that you have not made any changes whatsoever to the project > in any way, nor did you change the version of Xcode you were using, but you > get a slew of errors when you clean/compile? i was editing Viewmanager.m, and .h, but i did

Re: sudden errors

2012-02-27 Thread Keary Suska
On Feb 27, 2012, at 4:53 PM, H. Miersch wrote: > > On 27. Feb 2012, at 23:01, H. Miersch wrote: > >> hi. >> my project used to build OK, until today. now xcode keeps throwing errors >> like this at me: >> >> Unknown type name 'ViewManager' >> >> yes, i import ViewManager.h, and no, i did

Re: sudden errors

2012-02-27 Thread H. Miersch
On 27. Feb 2012, at 23:01, H. Miersch wrote: > hi. > my project used to build OK, until today. now xcode keeps throwing errors > like this at me: > > Unknown type name 'ViewManager' > > yes, i import ViewManager.h, and no, i didn't change any declarations. is > this a bug in Xcode? >

sudden errors

2012-02-27 Thread H. Miersch
hi. my project used to build OK, until today. now xcode keeps throwing errors like this at me: Unknown type name 'ViewManager' yes, i import ViewManager.h, and no, i didn't change any declarations. is this a bug in Xcode? like i said, until sometime today this used to build ok. what a