I had a program that worked fine in Xcode 3 but when I imported the project in Xcode 4 I'm getting a lot of issues, I would like to know what causes this & how to fix it. Errors when code is copied into Xcode manually

Errors when project that was built & run successfully into Xcode 3 built into Xcode 4

First one shows errors when code is copied into Xcode manually & the second one shows errors when project that was built & run successfully into Xcode 3 built into Xcode 4

link|improve this question

Can you please show some examples? – Philip Regan Jul 26 '11 at 13:47
I recompiled & the errors changed...XCode 4 is driving me insane >.< – Samantha Catania Jul 26 '11 at 13:56
feedback

migrated from apple.stackexchange.com Jul 26 '11 at 13:47

This question came from our site for power users of Apple hardware and software.

2 Answers

By the looks of it you are either not importing a header or linking against a framework. The errors are basically stating that the compiler cannot find the symbols you need. Check at the top of your file and see if you're importing the correct header. If you are and an error is being shown there then it is probably a linking issue, so check your project settings.

link|improve this answer
I only use 2 frameworks & I imported both of them from the build phase pane, the errors are found in the NSObjCRuntime.h NSZone.H & NSObject.h – Samantha Catania Jul 26 '11 at 14:06
What SDK are you compiling against? It could possibly be that the SDK you have selected is no longer available. – Martin Pilkington Jul 27 '11 at 13:46
I think the error occurred because I was trying to import an Obj C framework into a C project – Samantha Catania Jul 27 '11 at 13:59
feedback
up vote 0 down vote accepted

Solved: I was trying to import the Foundation framework into a C project *facepalm Thx for all the feedback & help

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.