UIPageViewController 中的 UIScrollView 滚动了多少?

Posted

技术标签:

【中文标题】UIPageViewController 中的 UIScrollView 滚动了多少?【英文标题】:How much a UIScrollView has been scrolled inside a UIPageViewController? 【发布时间】:2014-03-31 17:45:25 【问题描述】:

我试图弄清楚我的UIPageViewController 中的滚动视图有多少已滚动。我在 viewLoad 中有以下代码从UIPageViewController 访问UIScrollView

for (UIView *view in self.pageViewController.view.subviews) 

    if ([view isKindOfClass:[UIScrollView class]]) 
    
        thisControl = (UIScrollView *)view;
    

所以一旦我有了 UIScrollView,称为 thisControl,我想通过执行以下操作来打印滚动了多少:

NSLog (@"Scroll: %f",thisControl.contentOffset.x);

问题在于,我真的不知道将这一行放在哪里,或者如何连续打印滚动了多少。 有什么想法吗?

【问题讨论】:

【参考方案1】:

将委托设置为该控制器(myScroll.delegate = self;),然后添加此方法:

- (void) scrollViewDidScroll: (UIScrollView *) scrollView

  CGFloat y = scrollView.contentOffset.y;
  NSLog(@"%f",y);
  // some stuff

【讨论】:

嗯,我认为看起来不错,但不起作用。它给了我一个警告,从不兼容的类型分配给 'id',然后它只打印 0.000000000 Ups,对不起我的错误,我正在水平移动屏幕,所以它必须是 CGFloat x = scrollView.contentOffset.x;而不是 y,现在可以完美运行。非常感谢! 在 .h 文件中你必须添加 UIScrollViewDelegate

以上是关于UIPageViewController 中的 UIScrollView 滚动了多少?的主要内容,如果未能解决你的问题,请参考以下文章

UIPageViewController 中的 UIScrollView 滚动了多少?

如何删除 UIPageViewController 中的 previousViewControllers

UIPageViewController 中的奇怪约束行为

UIPageViewController 中的脊椎到底是啥?

如何更改 UIPageViewController 中的按钮名称

Swift 4 UIPageViewController 未显示正确的视图(按顺序在数组中定义