vote up 4 vote down star
5

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..

flag

2 Answers

vote up 13 vote down check

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|flag
That's exactly it. I didn't even think of the CATransaction. Thanks a lot! – Mel Oct 22 '08 at 18:17
vote up -1 vote down

Sorry this is not an answer, but I have another question related to this: can I assume the duration of the movement is 0 as it moves instantly without animation(except the CPU cycles consumed for the underlying code)?

link|flag

Your Answer

Get an OpenID
or

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