gpt4 book ai didi

ios - 静态表不显示

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:12:09 27 4
gpt4 key购买 nike

我创建了一个 TableView Controller ,并从 Xcode 中的下拉列表中选择内容作为静态单元格。我在这些单元格中放置了按钮,但是当我运行时,我得到一个空表。我没有在 TableViewController 类中输入任何代码,因为我认为这不需要。

如何解决这个问题?

这是它在 Xcode 中以及在模拟器中运行时的样子:

enter image description here

enter image description here

最佳答案

你可能会错过一些东西:

1) 检查您的tableView是否在您的代码中设置了名为on的类。您会在 tableView 的属性检查器中找到用于键入类名称的输入字段。

2)检查您是否实现了符合 UITableViewDelegate 和 UITableViewDataSource 协议(protocol)的方法。

func numberOfSections(in tableView: UITableView) -> Int {
// I see you only have 1 section now
return 1
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
//you should return appropriate number
return 3
}

3) 检查您的表格是否已从 Storyboard 正确连接到您的 UIViewController =>

如果您的 tableView 在 UIViewController 中,请检查您是否在 Controller 中为 tableView 设置了委托(delegate)和数据源(CTRL 从表拖动到 FileOwner - Storyboard场景框架中的圆形黄色图标。)

关于ios - 静态表不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39296088/

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