gpt4 book ai didi

ios - 类型 viewcontroller 不符合 uitableviewdatasource 协议(protocol)

转载 作者:行者123 更新时间:2023-11-28 18:53:31 25 4
gpt4 key购买 nike

我已经在另一个 View 中完成了相同的表格 View ,但在这个 View 中无法工作。我也在寻找解决方案,但我不知道什么不起作用

类 HistoryViewController:UIViewController、UITableViewDelegate、UITableViewDataSource {

@IBOutlet weak var tableview: UITableView!

var date = ["ciao", "muori"]
var place = ["aaaa"]



override func viewDidLoad() {
super.viewDidLoad()

tableview.dataSource = self
tableview.delegate = self

// Do any additional setup after loading the view.
}


override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

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

func tableview(tableView: UITableView, cellForRowIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = self.tableview.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as! HistoryCell
cell.placeLabel.text = place[indexPath.row]
cell.dateLabel.text = date[indexPath.row]
return cell

}


func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath)
{

}

有人可以帮助我吗?

最佳答案

  • 转到问题导航器 (⌘4)。
  • 打开错误消息旁边的三角提示。
  • 实现错误消息下方显示的缺少的必需方法。

并使用代码完成来避免这些拼写错误。

关于ios - 类型 viewcontroller 不符合 uitableviewdatasource 协议(protocol),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37077842/

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