I\'m trying to drag a CALayer in an iOS app.
CALayer
As soon as I change its position property it tries to animate to the new position and flickers all over the
You can also use the convenience function
[CATransaction setDisableActions:YES]
as well.
Note: Be sure to read the comments by Yogev Shelly to understand any gotchas that could occur.