gpt4 book ai didi

ios - 对成员 '(_:numberOfRowsInSection:)' 的模糊引用

转载 作者:行者123 更新时间:2023-11-29 00:57:59 25 4
gpt4 key购买 nike

我正在尝试从 Github GET 要点并将它们弹出到表格 View 中,这是完整的代码,Gist 是在别处定义的一个类:

var gists = [Gist]()

override func viewDidAppear(animated: Bool) {
loadGists()
}

func loadGists() {
GithubAPIManager.sharedInstance.fetchPublicGists() { result in
guard result.error == nil else {
print("Error 1")
return
}

if let fetchedGists = result.value {
self.gists = fetchedGists
}
self.tableView.reloadData()
//Error here.
}
}

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return gists.count
}

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell")!

let gist = gists[indexPath.row]
cell.textLabel?.text = gist.description
cell.detailTextLabel?.text = gist.ownerLogin

return cell
}

最佳答案

所以,问题是我没有将 TableView 的导出添加到 View Controller.swift。只需将 TableView 拖到 .swift 文件中即可创建它。

关于ios - 对成员 '(_:numberOfRowsInSection:)' 的模糊引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37427375/

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