gpt4 book ai didi

ios - 无法在tableview Swift中显示核心数据

转载 作者:行者123 更新时间:2023-11-30 12:58:04 25 4
gpt4 key购买 nike

class showPageViewController: UIViewController, UITableViewDelegate, UITableViewDataSource  
{

@IBOutlet weak var tableView: UITableView!
var records : [Record] = []

func numberOfSections(in tableView: UITableView) -> Int {
return 1
}

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

return records.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = UITableViewCell()
return cell
}

func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath){
let context = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext

if editingStyle == .delete{
let record = records[indexPath.row]
context.delete(record)
(UIApplication.shared.delegate as! AppDelegate).saveContext()
do{
records = try context.fetch(Record.fetchRequest())
} catch{
print("Failed")
}
}


}

override func viewWillAppear(_ animated: Bool) {
getData()
tableView.reloadData()
}

func getData(){
let context = (UIApplication.shared.delegate as! AppDelegate).persistentContainer.viewContext
do{
records = try context.fetch(Record.fetchRequest())
} catch{
print("123")
}
}


override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}

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

大家好,我只是想在表格 View 中显示核心数据,我已经将dataSourcedelegate连接到ViewController,我确认核心数据中有一些数据,有人可以帮助我吗?谢谢

最佳答案

两个大错误:

  1. 您无法使用默认初始值设定项 UITableViewCell() 创建单元格你必须将其出列。
  2. 您必须获取索引路径的数据源数组中的项目,并将属性值分配给单元格的标签。

    func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
    let record = records[indexPath.row]
    cell.textLabel!.text = record.<nameOfProperty>
    return cell
    }

cell是 Interface Builder 中指定的标识符。
<nameOfProperty>是数据模型中的一个属性。

关于ios - 无法在tableview Swift中显示核心数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40189170/

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