gpt4 book ai didi

swift - UIViewController 内的 UITableView

转载 作者:搜寻专家 更新时间:2023-11-01 06:02:31 26 4
gpt4 key购买 nike

我正在尝试在 UIViewController 中使用 UITableView。但是,当我尝试这样做时,它会在我启动应用程序时给我一个错误。错误说“方法不覆盖父类(super class)中的 ant 方法”

import UIKit

class GPATableViewController: UIViewController,UITableViewDelegate,UITableViewDataSource {

struct Objects {
var sectionName : String!
var sectionObjects : [String]!
}

var objectsArray = [Objects]()

override func viewDidLoad() {
super.viewDidLoad()

objectsArray =
[Objects(sectionName: "Section1" , sectionObjects: ["","",""]),
Objects(sectionName: "Section2" , sectionObjects: ["","",""]),
Objects(sectionName: "Section3" , sectionObjects: ["","",""])]
}

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as UITableViewCell!
// cell?.textLabel!.text = objectsArray[indexPath.section].sectionObjects[indexPath.row]

print
return cell!
}

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return objectsArray[section].sectionObjects.count
}

override func numberOfSections(in tableView: UITableView) -> Int {
return objectsArray.count
}

override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return objectsArray[section].sectionName
}

}

最佳答案

当您在 UIViewController 中实现 UITableViewDatasource 时,您并没有覆盖这些方法。

从编译器告诉您的方法中删除 override

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell") as UITableViewCell!
// cell?.textLabel!.text = objectsArray[indexPath.section].sectionObjects[indexPath.row]

print
return cell!
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return objectsArray[section].sectionObjects.count
}

func numberOfSections(in tableView: UITableView) -> Int {
return objectsArray.count
}

func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return objectsArray[section].sectionName
}

注意:如果您使用的是 UITableViewController,那么您将需要 override,这可能是您从中复制它的任何文件中发生的事情。

关于swift - UIViewController 内的 UITableView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45442209/

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