Swift:使用界面生成器创建 tableView
Posted
技术标签:
【中文标题】Swift:使用界面生成器创建 tableView【英文标题】:Swift: create tableView using interface builder 【发布时间】:2014-06-11 11:18:10 【问题描述】:我正在尝试在我的应用程序中实现一个 tableView,虽然这对 objective-c 没有问题,但我不知道如何在 Swift 中做到这一点。这是我的代码:
import UIKit
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource
@IBOutlet
var tableView: UITableView
override func viewDidLoad()
super.viewDidLoad()
self.tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")
func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int
return 5
func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell!
var cell:UITableViewCell = self.tableView.dequeueReusableCellWithIdentifier("cell") as UITableViewCell
cell.textLabel.text = "test"
return cell
我还在界面生成器中创建了一个带有原型单元格的 tableView。原型单元的重用标识符设置为“单元”。我没有收到任何错误消息,但是在模拟器中运行时,我得到一堆空单元格,其中没有任何内容。 你知道我做错了什么吗?
经过更多测试后,似乎func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell!
和func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int
这两种方法都不会被调用,但我不知道我做错了什么
谢谢你
【问题讨论】:
您从未指定正在发生或未发生什么,以及这与您的预期有何不同。 你遇到了什么错误? sry 你说得对。更新问题。 Interface Builder 中的dataSource
和delegate
出口(用于表格视图)是否连接到您的班级?您可以在运行时检查这些属性以进行检查吗?
非常感谢!!他们没有连接,这就是问题所在!我怎么会忘记呢?
【参考方案1】:
也许您忘记设置委托和数据源。您可以在代码中使用以下代码行:
override func viewDidLoad()
super.viewDidLoad()
self.tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell")
// Set delegate and datasource
self.tableView.delegate = self
self.tableView.dataSource = self
【讨论】:
感谢您的帮助!现在我还有另一个问题:在 cellForRowAtIndexPath 方法中,我编写了以下代码:var cell = tableView.dequeueReusableCellWithIdentifier("cell") as? UITableViewCell var x = 0 if !cell cell = UITableViewCell(style: UITableViewCellStyle.Value1, reuseIdentifier: "cell") x = x + 1 cell!.textLabel.text = "hi \(x)"
我希望它为每一行显示另一个文本(hi1,hi2,hi3,...),但它只显示我的 hi1 a很多时候..
请不要在评论中写代码。改为编辑您的问题。
是的。这是正确的,它总是显示 h1。您需要使用 indexPath.row 变量。在那里你得到了正确的行号。
@LordZsolt 感谢您的建议。下次我会做的。再次打印,感谢您的帮助!以上是关于Swift:使用界面生成器创建 tableView的主要内容,如果未能解决你的问题,请参考以下文章
如何在 swift3 中使用 tableview 和 searchbarcontroller 创建范围搜索