views:

112

answers:

1

I am running a keyFrame animation to move and flip a playing card view using CAKeyframeAnimation. is there any way to swap the cardFront and cardBack layers during the animation? or am i taking the wrong approach here...

A: 

use a timer set to half the animation duration to execute cardBack.contents = cardFront.contents

Reeds