パン ジェスチャを使用して、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);