I just can't find that framework for adding it. Any ideas?
How can I add Core Animation framework to my Xcode project?
Asked Answered
Add the QuartzCore framework. It contains CoreAnimation.
Also, make sure that you do an
#import <QuartzCore/QuartzCore.h>
before using any Core-Animation-specific classes, etc.
You need to add the QuartzCore
framework to your project.
- Click on your project in project navigator.
- Click on the target.
- Click on "build phases" tab.
- Expand "Link Binary with Libraries".
- Click "+" to add.
© 2022 - 2024 — McMap. All rights reserved.