UINavigationController navBar内的UIPageViewController中的UITableViewController不反弹

时间:2019-01-22 17:56:25

标签: ios swift uinavigationcontroller uinavigationbar uipageviewcontroller

我有 UINavigationController ,它按 UIPageViewController ,每个页面都有 UITableViewController

NavigationController 具有 prefersLargeTitles = true

通常,在 NavigationController 内的 UITableViewController 中,当向下拖动时,导航栏上会出现此跳动动画。

但是在我的情况下, UITableViewController 上没有一个。

我可以以这种方式激活动画吗?

1 个答案:

答案 0 :(得分:0)

UITableViewUIScrollView的子类,因此您应该能够访问其bounces属性。

尝试类似这样的操作,您可以在其中访问tableViews:

yourTableView.bounces = true

如果这不能解决您的问题,请尝试从PageViewController共享更多代码