i am trying to do the half page curl feature. This is the code I am using.

#import <QuartzCore/QuartzCore.h>


CATransition *animation = [CATransition animation];
[animation setDelegate:self];
[animation setDuration:1.0f];
[animation setTimingFunction:UIViewAnimationCurveEaseInOut];
[animation setType:(notCurled ? @"mapCurl" : @"mapUnCurl")];
[animation setRemovedOnCompletion:NO];
[animation setFillMode: @"extended"];
[animation setRemovedOnCompletion: NO];
notCurled = !notCurled;

But I encounter the following errors

Undefined symbols for architecture i386: "_OBJC_CLASS_$_CATransition", referenced from: objc-class-ref in MyMapViewController.o ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation)

"_OBJC_CLASS_$_CATransition", referenced from:

  objc-class-ref in SJMapViewController.o

ld: symbol(s) not found for architecture i386

clang: error: linker command failed with exit code 1 (use -v to see invocation)

Cant find out what the error is. Help needed.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

your app is complaining it can not find CATransition Symbol.

Did you add the QuartzCore framework to your app?

If not add it: go to your target settings -> build phases -> link binary -> select the + button and select QuartzCore.

then import it where you need to use it:

      #import <QuartzCore/QuartzCore.h>
link|improve this answer
I thought I had added the framework, rechecked it and found that I haven't added. Thanks mate. – Xavi Valero Dec 12 '11 at 9:13
feedback

Your Answer

 
or
required, but never shown

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