gpt4 book ai didi

ios - 沿着贝塞尔曲线路径拖动 UIView

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:19:18 24 4
gpt4 key购买 nike

我需要沿着贝塞尔曲线路径将 UIView 从一个点拖到另一个点,最好的方法是什么?

最佳答案

这是将 uiview 从一点拖到另一点的最简单方法。

UIBezierPath *path  = [UIBezierPath bezierPath];
[path moveToPoint:startingPoint];
[path addLineToPoint:endPoint]; //you can use addCurveToPoint: , addArcToPoint:, etc

CAKeyframeAnimation *pathAnimation = [CAKeyframeAnimation animationWithKeyPath:@"position"];
pathAnimation.duration = 10.0;
pathAnimation.path = path;
pathAnimation.removeOnCompletion = NO ;
[myView.layer addAnimation:pathAnimation forKey:@"pathAnimation"];

关于ios - 沿着贝塞尔曲线路径拖动 UIView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12885226/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com