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 the following code:

CATextLayer *test = [CATextLayer layer];
test.string = summary;
test.wrapped = YES;
//test.truncationMode = kCATruncationEnd;
//test.alignmentMode = kCAAlignmentJustified;
test.frame = s;
[test drawInContext:context];

I import the framework and link against it, however when it links I get the following error:

ld: warning: in /Users/ryansully/Desktop/AppName/Project/1/AppName/QuartzCore.framework/QuartzCore, missing required architecture i386 in file Undefined symbols:
"_OBJC_CLASS_$_CATextLayer", referenced from: objc-class-ref-to-CATextLayer in StoriesCell.o ld: symbol(s) not found collect2: ld returned 1 exit status

This is for an iOS project. I get this error in both XCode 3.2.3 and XCode 4 DP2.

share|improve this question
Are you sure you're importing QuartzCore.framework, and you have #import <QuartzCore/QuartzCore.h> in your code? – jtbandes Jul 24 '10 at 17:58
Yes, I am 100% sure. I checked this multiple times as per direction by IRC :P – Ryan Sullivan Jul 24 '10 at 18:00
Tried creating a new project and putting it in? – jtbandes Jul 24 '10 at 18:25

1 Answer

up vote 1 down vote accepted

Turns out XCode 4 is still buggy and can't add Frameworks appropriately. The issue was solved by opening the project in XCode 3, removing + readding the framework, then compiling.

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.