gpt4 book ai didi

ios - 关于在 Swift 的静态 tableviewController 中放置固定按钮的问题

转载 作者:行者123 更新时间:2023-12-01 21:59:15 24 4
gpt4 key购买 nike

我用静态表格 View 制作了一个可滚动的屏幕。

enter image description here

但我想创建一个独立于滚动此 TableView 的 UIButton。

我想将它锚定到 View 的底部,如下所示。

enter image description here

是否可以在可滚动的静态表格 View 中将这样的按钮停靠在屏幕底部?

最佳答案

您应该为 tableView 创建一个页脚 View 去做这个。

以编程方式

let footerView = UIView()
footerView.backgroundColor = .red // your color
// You have to give height and width yourself
let button = UIButton(frame: CGRect(x: 0, y: 0, width: 100, height: 50))
button.setTitle("<title>", for: .normal)
button.addTarget(self, action: #selector(didTapButton), for: .touchUpInside)
footerView.addSubview(button)

通过界面生成器

只需拖放 UIView ( CMD + Shift + L > 输入 uiview) 到您的 tableView,然后添加一个按钮到您的 footerView ,设置约束。

然后你应该添加这个footerView给您的tableView

tableView.tableFooterView = footerView

为您的按钮创建一个 Action

@objc func didTapButton(_ sender: UIButton) {
print("didTapButton called")
}

关于ios - 关于在 Swift 的静态 tableviewController 中放置固定按钮的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60560253/

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