我使用平移手势在 CALayer 中移动图像。我遇到的问题是图像的移动似乎有一点延迟,并且没有出现“卡住”我的手指。
这是我如何移动图层的实际片段(facePic 是 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);