gpt4 book ai didi

xcode - 类型 "First View Controller"不符合协议(protocol) "UITableViewDataSource"

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

所以我似乎无法消除这个错误..

我的代码是:

class FirstViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
@IBOutlet var tblTasks: UITableView!

//UITableViewDataSource
func tableView(tableView: UITableView!, numberOfRowsInSection section: Int) -> Int{
return taskMgr.tasks.count
}

//UITableViewDataSource
func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell!{

let cell: UITableViewCell = UITableViewCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: "test")

cell.textLabel!.text = taskMgr.tasks[indexPath.row].name
cell.detailTextLabel!.text = taskMgr.tasks[indexPath.row].desc

return cell
}
}

我为 UITableViewDataSource 使用了两个必需的函数,所以我不确定为什么会不断收到此错误。

最佳答案

尝试如下所述更改方法签名。注意 ! 在输入参数中被删除。

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
}

关于xcode - 类型 "First View Controller"不符合协议(protocol) "UITableViewDataSource",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27371743/

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