Reputation: 7311
I'm getting a compile time error "Undefined symbols for architecture i386" when trying to use any 3D animation stuff like CATransform3DIdentity or CATransform3DMakeScale.
I'm using them like this:
imgV.layer.transform = CATransform3DMakeScale(512, 384, -100);
Any ideas?
pom
Upvotes: 0
Views: 1959
Reputation: 4594
I just had the same problem this morning. I had to add the QuartzCore framework for this to work.
Upvotes: 2