UIPanGestureRecognize
ビューのフレームを変更するために使用する があります。UIScrollView
またはの減速をシミュレートする方法はありUITableView
ますUIGestureRecognizerStateEnded
か? これが私の現在のコードです:
if (panGesture.state == UIGestureRecognizerStateEnded)
{
[UIView animateWithDuration:0.25 delay:0 options:UIViewAnimationOptionBeginFromCurrentState animations:^{
self.view.frame = CGRectMake(182, 0, self.view.frame.size.width, self.view.frame.size.height);
}
completion:^(BOOL finished) {
if (finished) {
//Do something
}
}];
}
しかし、これはスムーズなスクロールではありません。設定したポイントで停止するまで減速するものが欲しいです。ありがとう