我正在快速使用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)
但这不起作用。
现在,我正在寻找另一种方法来将视图的位置从标签栏下方更改为上方。但这对我来说很难。我该怎么办?