gpt4 book ai didi

ios - UITableViewcontroller子类需要应用Padding left和Right

转载 作者:行者123 更新时间:2023-11-28 23:24:56 25 4
gpt4 key购买 nike

我有一个带有 UITableViewcontroller 子类的类,我在其中显示 Tableview 我想用左右填充显示,任何人都可以解释一下如何在 Tableview 上应用填充

我正在使用 UITableview 的这个子类 https://github.com/amkomatz/EXTable

最佳答案

好吧,您始终可以创建一个 UIViewController 并手动向其中添加一个 UITableView ..这样您就可以精确地控制布局。

例如在常规 UIViewController 子类的 viewDidLoad() 中:

let tableView = UITableView(/* use whichever init makes sense */)
tableView.delegate = self
tableView.dataSource = self

tableView.registerCellForReuse... // I forget the exact syntax off the top of my head

self.view.addSubview(tableView)

// set constraints (auto layout) as normal

但是,如果您确实想使用 UITableViewController,您只需添加一些 contentInset (又名填充):

tableView.contentInset = UIEdgeInsets(top: 0, left: leftPadding, bottom: 0, right: rightPadding)

关于ios - UITableViewcontroller子类需要应用Padding left和Right,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58968828/

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