views:

936

answers:

3

I just can't find that framework for adding it. Any ideas?

+4  A: 

Add the QuartzCore framework. It contains CoreAnimation.

Jason Coco
+3  A: 

You need to add the QuartzCore framework to your project.

Perspx
+1  A: 

Also, make sure that you do an

#import <QuartzCore/QuartzCore.h>

before using any Core-Animation-specific classes, etc.

Brad Larson