UIPageViewController - 如果没有页面,不允许移动

时间:2014-08-10 11:59:53

标签: ios uipageviewcontroller uipagecontrol

在我的应用程序中,如果之前和/或之后没有页面,我不希望它可以拖动。

请参阅下面的图片。

如果当前页面之前或之后没有页面,我不希望它能够移动。无论你拖多少,如果之前和/或之后没有页面,我希望它像第二张图像一样保持静止。

拖动时的现状:

enter image description here

在拖动之前和/或之后没有页面时我希望如何:

enter image description here

1 个答案:

答案 0 :(得分:-3)

这是你要找的吗?

禁用UIPageViewController中的跳出效果:

for (UIView *view in self.pageViewController.view.subviews ) {
        if ([view isKindOfClass:[UIScrollView class]]) {
            UIScrollView *scroll = (UIScrollView *)view;
            scroll.bounces = NO;
        }
}