gpt4 book ai didi

ios - 是否有可能知道什么时候 [UIDynamicItemBehavior addLinearVelocity :forItem:] has finished running?

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

我正在使用 UIPanGestureRecognizer 和 UIAttachmentBehavior 在屏幕上移动 UIView。当用户结束手势时,我使用 UIDynamicItemBehavior 和 addLinearVelocity:forItem: 方法将手势识别器的速度应用于 View 。

这是我使用的代码:

- (void)_handlePanGestureRecognized: (UIPanGestureRecognizer *)panGestureRecognizer
{
if (panGestureRecognizer.state == UIGestureRecognizerStateBegan)
{
_attachmentBehavior.anchorPoint = panGestureRecognizer.view.center;
[_dynamicAnimator addBehavior: _attachmentBehavior];
}
else if (panGestureRecognizer.state == UIGestureRecognizerStateChanged)
{
CGPoint point = [panGestureRecognizer locationInView: panGestureRecognizer.view.superview];
_attachmentBehavior.anchorPoint = point;
}
else if (panGestureRecognizer.state == UIGestureRecognizerStateEnded)
{
[_dynamicAnimator removeBehavior: _attachmentBehavior];

CGPoint velocity = [panGestureRecognizer velocityInView: panGestureRecognizer.view.superview];
[_dynamicItemBehavior addLinearVelocity: velocity
forItem: self];
}
}

当 View 停止移动时,我想让它捕捉到屏幕最近的边缘,但我目前无法知道它何时停止移动,除非使用 CADisplayLink 轮询 View 的中心。

最佳答案

您是否尝试附加一个 UIDynamicAnimatorDelegate给你的动画师,并使用 dynamicAnimatorDidPause: 方法触发捕捉到最近的边缘?

从开发者论坛上的阅读来看,听起来有些人的观点在长时间保持运动时遇到了问题(例如,来回摆动 1 个像素),但这也许适用于您的情况。

关于ios - 是否有可能知道什么时候 [UIDynamicItemBehavior addLinearVelocity :forItem:] has finished running?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19169110/

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