如何在PageMenu中从顶部到底部更改选项卡栏的位置?

时间:2019-04-19 04:59:01

标签: swift uipageviewcontroller

我正在快速使用PageMenu库。该库的标签栏位于顶部。但是我想将标签栏的位置从上到下更改。

我发现更改菜单的位置。但是当我更改它时,我看不到控制器的视图。我认为视图固定在标签栏下方。

这是一个图书馆:https://github.com/PageMenu/PageMenu

来自

controllerScrollView.frame = CGRect(x: 0.0, y: configuration.menuHeight, width: self.view.frame.width, height: self.view.frame.height - configuration.menuHeight)

controllerScrollView.frame = CGRect(x: 0.0, y: 0.0, width: self.view.frame.width, height: self.view.frame.height - menuSize)

和来自

menuScrollView.frame = CGRect(x: 0.0, y: 0.0, width: self.view.frame.width, height: configuration.menuHeight)

menuScrollView.frame = CGRect(x: 0.0, y: self.view.frame.height - menuSize, width: self.view.frame.width, height: menuSize)

但这不起作用。

现在,我正在寻找另一种方法来将视图的位置从标签栏下方更改为上方。但这对我来说很难。我该怎么办?

0 个答案:

没有答案