菜鸟教程小白 发表于 2022-12-12 22:03:27

ios - 在 iOS 中,我如何实现在另一个具有动量的 View 中滑动 View ?


                                            <p><p>我知道如何识别<strong>滑动手势</strong>,但我不知道如何使它所在的 View 随动量向左或向右滑动。 <strong>'动量'</strong>我的意思是它会在手势结束后继续滑动一段时间,然后逐渐停止。我可以用平移手势移动 View ,但 View 很长,我需要比平移 Action 移动得更快更远。 View 是否必须在 <code>UIScrollView</code> 内?平移操作无需在 <code>scrollView</code> 中即可工作。</p>

<p>编辑:有几条评论问我想做什么。我正在开发一个应用程序,该应用程序通过低功耗蓝牙从传感器接收心率数据并以各种方式显示它。所以我在屏幕上有几个小的 UIView,每个都包含一个数据图。这些图仅使用 drawRect 和变换制作(让坐标标签正确定位是迄今为止最难的部分)。一个 UIView 具有每分钟节拍 (bpm) 与时间的关系,另一个具有 bpm 值的直方图,我可能会添加更多。 bpm 与时间图允许以每秒一个值的方式记录两个小时的数据,因此它的宽度为 7200 点。我可能会扩大它。随着每个新值的到达,它被放在右端。在绘图增长到填充 UIView 的整个宽度后,随着每个新值的添加,绘图开始向左移动一个点,因此最新数据始终可见。一些异常发生时会被标记出来,例如早搏和漏拍,这些标记会留在情节上并随之移动。之所以需要滑动和滚动,是因为我希望用户能够向后滑动数据以查看离开屏幕的值。我还需要能够上下平移(或滑动),以防在我尝试将垂直比例适合实际数据值之后值的范围不适合屏幕。所以这就是我想要完成的。我会回去尝试 ScrollView 。我想我没有让它工作,因为我无法弄清楚 swipeGesture 的去向以及如何使它导致滚动。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这是我用于用户在另一个 View 中向上/向下拖动 View 的一些代码,该 View 在 View 上使用手势识别器,并且在用户抬起手指后有动力继续。</p>

<p>只需进行必要的更改以使其适应 View 的开始/结束位置以及垂直或水平滚动等。</p>

<p>它没有使用 ScrollView 。动量是使用 UIViewAnimationOptionCurveEaseOut 实现的,您可以尝试使用其他动画曲线来查看您喜欢的动画曲线,但是正如您在帖子中描述的那样“在手势结束后继续滑动一段时间并逐渐停止。”</p>

<pre><code>- (IBAction)handleVerticalSwipe:(id)sender
{
    if ( == UIGestureRecognizerStateBegan)
    {
      self.pulldownViewStartPosition = self.pulldownView.frame.origin.y;
    }
    else
    {
      int maxYPosition = 527; // Calculate at run time

      CGRect targetFrame = self.pulldownView.frame;
      CGFloat newYPos = 0;
      if ( == UIGestureRecognizerStateChanged)
      {
            // translationInView: returns a CGPoint which is not the position of the touch but the amount representing
            // the total translation over time.
            // The x and y values report the total translation over time. They are not delta values from the last time that
            // the translation was reported. Therefore the translation value should be applied to the state of the view when
            // the gesture is first recognized and should not be concatenated to the value each time the handler is called.

            CGPoint translation = ];

            newYPos = self.pulldownViewStartPosition + translation.y;

            if (newYPos &gt; maxYPosition)
            {
                newYPos = maxYPosition;
            }
            if (newYPos &lt; self.pullDownDefaultPosition)
            {
                newYPos = self.pullDownDefaultPosition;
            }

            targetFrame.origin.y = newYPos;
            self.pulldownView.frame = targetFrame;
      }
      else if ( == UIGestureRecognizerStateEnded) // User has lifted finger after swipe
      {
            // Gets the velocity of the gesture so it can be determined if the pulldown
            // should extend or retract
            CGFloat yVectorVelocity = ].y;

            if (yVectorVelocity &lt; 0)
            {
                newYPos = self.pullDownDefaultPosition;
            }
            else
            {
                newYPos = maxYPosition;
            }
            targetFrame.origin.y = newYPos;
            [UIView animateWithDuration:kPulldownDefaultAnimationDuration delay:0
                              options:UIViewAnimationOptionCurveEaseOut
                           animations:^{
                                 self.pulldownView.frame = targetFrame;
                           }
                           completion:nil];
      }
    }
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 在 iOS 中,我如何实现在另一个具有动量的 View 中滑动 View ?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/23399013/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/23399013/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 在 iOS 中,我如何实现在另一个具有动量的 View 中滑动 View ?