Xamarin iOS - 具有速度的 UIView 动画
Xamarin iOS - UIView Animation with velocity
我有一个 UIView 位于所有其他视图之上。这个 UIView 有一个 UIPanGestureRecognizer 可以将它拖到屏幕上。如果用户停止平移,视图将移动到计算出的位置,即左屏幕边界或右屏幕边界。这工作得很好,但现在我想考虑视图在屏幕上移动的速度,当用户将他的手指从屏幕上移开时,UIView 不应该立即停止移动到端点,而是应该用曲线来完成。
编辑 1
我想我表达错了。我的意思是 View 应该按照用户拖动它的方向移动,然后它应该形成一条曲线并移动到所需的位置。把它想象成重力。用户将视图从左下角快速拖动到屏幕中间并立即抬起手指。然后 View 不应该停止,否则它应该向最后一个方向移动并慢慢移动到所需位置,在本例中是右下角。
这是我已有的代码:
private void DidPan()
{
CGPoint translation = PanGesture.TranslationInView(this.Superview);
CGPoint velocity = PanGesture.VelocityInView(this.Superview);
if (PanGesture.State == UIGestureRecognizerState.Changed)
{
this.Center = new CGPoint(lastLocation.X + translation.X, lastLocation.Y + translation.Y);
}
else if (PanGesture.State == UIGestureRecognizerState.Ended)
{
// Calculates the new position the view will be moving to
var newLocation = new CGPoint(SetX(Superview.Bounds), SetY(Superview.Bounds));
// Animate it to the desired location
UIView.Animate(0.3, () =>
{
this.Center = newLocation;
}, null);
}
}
如您所见,我们已经有了速度,但我不知道如何从这里继续。希望有人从这里有正确的起点并且可以帮助我。
非常感谢!
我觉得UIKit Dynamics可以满足你的要求。
参考这个博客:https://blog.xamarin.com/drag-drop-and-snap-with-uikit-dynamics/
我有一个 UIView 位于所有其他视图之上。这个 UIView 有一个 UIPanGestureRecognizer 可以将它拖到屏幕上。如果用户停止平移,视图将移动到计算出的位置,即左屏幕边界或右屏幕边界。这工作得很好,但现在我想考虑视图在屏幕上移动的速度,当用户将他的手指从屏幕上移开时,UIView 不应该立即停止移动到端点,而是应该用曲线来完成。
编辑 1
我想我表达错了。我的意思是 View 应该按照用户拖动它的方向移动,然后它应该形成一条曲线并移动到所需的位置。把它想象成重力。用户将视图从左下角快速拖动到屏幕中间并立即抬起手指。然后 View 不应该停止,否则它应该向最后一个方向移动并慢慢移动到所需位置,在本例中是右下角。
这是我已有的代码:
private void DidPan()
{
CGPoint translation = PanGesture.TranslationInView(this.Superview);
CGPoint velocity = PanGesture.VelocityInView(this.Superview);
if (PanGesture.State == UIGestureRecognizerState.Changed)
{
this.Center = new CGPoint(lastLocation.X + translation.X, lastLocation.Y + translation.Y);
}
else if (PanGesture.State == UIGestureRecognizerState.Ended)
{
// Calculates the new position the view will be moving to
var newLocation = new CGPoint(SetX(Superview.Bounds), SetY(Superview.Bounds));
// Animate it to the desired location
UIView.Animate(0.3, () =>
{
this.Center = newLocation;
}, null);
}
}
如您所见,我们已经有了速度,但我不知道如何从这里继续。希望有人从这里有正确的起点并且可以帮助我。
非常感谢!
我觉得UIKit Dynamics可以满足你的要求。
参考这个博客:https://blog.xamarin.com/drag-drop-and-snap-with-uikit-dynamics/