Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have imported framework for sending email from application in background. i have imported framework i.e. SKPSMTPMessage. Can somebody suggest me why i am getting this error

Undefined symbols for architecture i386:

"_OBJC_CLASS_$_SKPSMTPMessage", referenced from:
  objc-class-ref in ConfirmController.o

"_kSKPSMTPPartContentTransferEncodingKey", referenced from:
  -[ConfirmController sendEmail] in ConfirmController.o

"_kSKPSMTPPartMessageKey", referenced from:
  -[ConfirmController sendEmail] in ConfirmController.o

"_kSKPSMTPPartContentTypeKey", referenced from:
  -[ConfirmController sendEmail] in ConfirmController.o

ld: symbol(s) not found for architecture i386

collect2: ld returned 1 exit status

I have imported framework correctly.

Sorce from which i have taken framework and followed is:

MFMailComposeViewController Question - Locking the Fields

Update:

Answer is you just drag and drop folder over the project and click copy. Thats it select project check box and target check box as well.

share|improve this question
After adding SystemConfiguration.framework from build phases my project compiles well – RDC Apr 15 at 11:45

17 Answers

up vote 297 down vote accepted

You can get this type of error if your class' .m file is not listed under the "Compile Sources" step of the "Build Phases" tab of your target. Normally Xcode does this for you, but sometimes it loses the plot and you need to add the .m file manually.

share|improve this answer
1  
thanks it helped me.... – Leena Apr 18 '12 at 10:17
4  
thanks a lot .... – Andrew May 5 '12 at 13:47
3  
Holy moly! Once again Xcode's developers kill all efforts at productivity. Thanks Allen – Ted Spradley May 20 '12 at 17:41
9  
Sometimes those errors appear because some framework is not linked properly. Just check all frameworks in "Link Binary With Libraries" in project's build-phase tab. – Heitara Jul 10 '12 at 21:14
3  
.m file already present but still i am getting this error.. – Rajneesh071 Dec 3 '12 at 13:10
show 15 more comments

Check the Valid Architectures & Build Active Architecture only properties.

enter image description here

share|improve this answer
1  
can you please tell me how to open this option window in Xcode 4.2 – Anand May 19 '12 at 5:12
If this doesn't help, see Allen Pike's answer below. – MattyG Jun 11 '12 at 3:11
Both this answer and Allen's one helped me. I really had to check both things: Compile Sources and Build Active Architecture Only. Thanks a lot guys! – Bogdan Jul 3 '12 at 19:45

If you importing some other project in xcode and if current and import project both have same files in Compiler source than just remove same file in current project in "Build phase' settings. It worked for me.

share|improve this answer
You saved me, Thanks – Superdev Feb 20 at 4:34

for me the issue turned out to be missing frameworks. Once I added em, it worked.

share|improve this answer
I had to add CoreData framework – emdog4 Feb 28 at 0:51

i have the same problem with 7 errors when i add PSTCollectionviewcontroller .The one solution for this problem is check your "xcode --> build phases-->compile sources" here add your all ".m" files ..I hope you this post will help users in future.

share|improve this answer

Is your framework compiled for armv(x)? It looks to me like it's compiled for i386, which code won't run on an iOS device. Or else it's compiled for armv(x) and you're trying to run it on the simulator, which is i386 code. Make sure, using the build settings Akshay displayed above, that your framework is correctly compiled for the chip you're going to run it on.

share|improve this answer
Its sorted. i had to just drag and drop framework forlder into my project forlder in xCode. Thanks – mann Aug 8 '11 at 15:56

Yeah this is related to what allen said... look for TargetMembership in Utilities section of the source file. there is a checkbox that associates that file to a project. Checking this solved this issue for me too.

share|improve this answer
I modified all of the other settings, but this was the one that finally fixed it for me. Thanks! – Alec Thomas Oct 30 '12 at 19:27

http://stackoverflow.com/a/10415850/1092219 get my answer from above link it may solve your problem I have the similar problem and it solved with the above link :)

share|improve this answer

Also could be that you're missing to link against a Binary Library, check Build Phases in your Targes add required libraries and then Product > Clean Product > Build

That must work too!

share|improve this answer

I had this issue when I opened the same project twice, only one project was the original and the other was cloned from a git url.

'Product' > 'Clean' solved the problem.

share|improve this answer

I also met this issue and I fixed it by checking if both compile source and link binary with library contained all the file/library/framework I required.

enter image description here

share|improve this answer
This answer was a lifesaver! Thank you a millon times over for posting it! – ciara staggs Feb 25 at 17:22

I got this message when I drag and dropped some source files from another project. When I deleted them and then added them via the "Add Files..." from the File menu, it built without the error.

share|improve this answer

try this one last:

so I tried all the suggestions on this page.. none worked.. The way my problem started was by following the steps in this tutorial that teaches how to link static libraries. With my sample project the instructions worked fine.. but then on my actual project I started getting the error above.

So what I did was go through each step of the said tutorial and built after each step.. the offending line turned out to be this one: adding -all_load to build settings-> other linker flags

it turns out that this flag was recommended once upon a time to link categories to static libraries.. but then it turned out that this flag was no longer necessary XCode4.2+.. (same goes for the -force_load flag.. which was also recommended in other posts)..

share|improve this answer

Ran into a similar issue with IOS 6. Was able to solve it by adding storekit.framework to the "Link Binary with Libraries" in the build phases section.

Now, it works like a charm.

share|improve this answer

When I encountered the same problem, i forgot to add "compiled version of library(with extension .a)". Normally we add the library of the imported project in Target Dependency in Build Phases but we forget to add "compiled library" in Link Binary with Libraries in Build Phases.

share|improve this answer

I didnt add the "-all_load -lstdc++" to Other Linker Flags in the build setting and I was able to launch the sim without error but I did not get MonkeyTalk log output when launched and the a previous script that I wrote that used to connect now showed the play button as disabled. The output of the MT IDE showed as "Connection set to iOS Simulator", but not able to select the run/play button.

The original project had "ObjC -all_load" in the Other Linker Flags and when I appended the "-all_load -lstdc++" along with it I got the error message this post is about. When I removed the "ObjC -all_load" and only added the "-all_load -lstdc++" the project built, but still no monkey talk log out put as confirmation in the console

share|improve this answer

When I encountered the same problem as this:

Undefined symbols for architecture i386:

_OBJC_CLASS_$_SKPSMTPMessage, referenced from: objc-class-ref in ConfirmController.o

It turned out that I just forgot to add framework. It was QuartzCore.framework to be exact.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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