简体   繁体   中英

Delay while moving CALayer with pan gesture

I use pan gesture to move an image in CALayer. The issue I experience is that the image appears to move with a little delay and does not appear 'stuck' to my finger.

Here is the actual snippet of how I move the layer(facePic is the CALayer):

CGPoint translation =[touche locationInView:self.view];
self.facePic.frame =
CGRectMake(translation.x - self.facePic.frame.size.width/2,
           translation.y - self.facePic.frame.size.height/2,
           self.facePic.frame.size.width,
           self.facePic.frame.size.height);

I think you see the result of implicit animation of a layer. If so then there are two options to disable this animation:

  1. use transactions
  2. set layer actions

To use transactions wrap your code with CATransaction

[CATransaction begin];
[CATransaction setValue:(id)kCFBooleanTrue forKey:kCATransactionDisableActions];
 . . .
[CATransaction commit];

To disable some layer actions you can add this to the layer init, the position animation for example:

aLayer.actions = @{@"position":[NSNull null]}; // FIXED property name

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM