gpt4 book ai didi

ios - 如何制作带按钮的右滚动菜单?

转载 作者:行者123 更新时间:2023-11-28 15:46:03 25 4
gpt4 key购买 nike

我想制作带有 4 个按钮的可滚动菜单(第一个 View Controller )。每个按钮都与特定的 View Controller 相关联。但我想具体一点:应用启动后,用户必须在每个 iPhone 版本(4、4.7、5.5)上只看到前三个按钮,他需要向下滚动才能看到更多按钮。我应该将堆栈 View 与 ScrollView 一起使用吗?我应该使用 UICollectionView(我发现它适用于图像但不适用于按钮)吗?

谢谢大家的帮助!

enter image description here

最佳答案

如果您使用 UICollectionViewController(或 UITableViewController,两者都可以),您可以像这样布局 Storyboard:

Storyboard layout using uitableviecontroller

然后在您的 MyTableViewController 中(同样,这也适用于 UICollectionViewController),您可以实现以下方法来将单元格大小设置为窗口高度的三分之一:

override func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
// get the height for the current view
let viewHeight = self.view.frame.height

// since we want 3 rows to appear at a time, simply divide the viewHeight by 3
return viewHeight / 3
}

关于ios - 如何制作带按钮的右滚动菜单?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43033191/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com