up vote 8 down vote favorite
9
share [g+] share [fb]

I'm trying to drag a CALayer in an iPhone app.

As soon as I change its position property it tries to animate to the new position and flickers all over the place:

layer.position = CGPointMake(x, y)

How can I move CALayers instantly? I can't seem to get my head around the Core Animation API on the iPhone.

Thanks a lot..

link|improve this question

feedback

2 Answers

up vote 29 down vote accepted

You want to wrap your call in the following:

   [CATransaction begin]; 
   [CATransaction setValue: (id) kCFBooleanTrue forKey: kCATransactionDisableActions];
   layer.position = CGPointMake(x, y);
   [CATransaction commit];

link|improve this answer
That's exactly it. I didn't even think of the CATransaction. Thanks a lot! – Mel Oct 22 '08 at 18:17
2 years later,, thanks, lol. – nacho4d Jul 6 '10 at 16:09
feedback

You can also use the convenience function

[CATransaction setDisableActions:YES] 

as well.

link|improve this answer
Important, this effects all CALayer so you want to reenable actions after you're done, i.e [CATransaction setDisableActions:YES] – Yogev Shelly Jan 25 at 14:19
feedback

Your Answer

 
or
required, but never shown

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