tableView(_: cellForRowAtIndexPath) 未被调用且 TableView 未显示任何数据

tableView(_: cellForRowAtIndexPath) is not called and TableView doesn't show any data

我放了一个 Table View Controller 并嵌入到 IB 上的 Navigation Controller 中。之后,我使用以下代码创建钱包TableViewController class:

class WalletsTableViewController: UITableViewController {

    private var wallets = [Wallet]()

    override func viewDidLoad() {
        super.viewDidLoad()
        fetchWallets()
    }

    private func fetchWallets(){
        let managedObjectContext = AppDelegate.managedContext
        let fetchRequest: NSFetchRequest<Wallet> = Wallet.fetchRequest()
        do {
            wallets = try managedObjectContext.fetch(fetchRequest)
        } catch {
            print(error.localizedDescription)
        }
    }

    override func tableView(_ tableView: UITableView, numberOfRowsInSection: Int) -> Int {
        return wallets.count
    }

    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        let cell = tableView.dequeueReusableCell(withIdentifier: "WalletCell", for: indexPath) 
        let wallet = wallets[indexPath.row]
        cell.textLabel?.text = wallet.name
        return cell
    }
}

我实现了一个持久性应用程序,这就是我使用 fetchWallets() 方法并且运行良好的原因。我可以将数据打印到控制台,但 tableView 不想显示我的元素。此外,不会调用已实现的 tableView() 方法。 我该如何解决这个问题?

编辑: tableView.reloadData() 没有帮助

EDIT2: 这是我的故事板:

按照上面评论中的建议尝试以下操作:

    private func fetchWallets(){
    let managedObjectContext = AppDelegate.managedContext
    let fetchRequest: NSFetchRequest<Wallet> = Wallet.fetchRequest()
    do {
        wallets = try managedObjectContext.fetch(fetchRequest)
        self.tableView.reloadData()
    } catch {
        print(error.localizedDescription)
    }
}

你需要在主线程中重新加载table视图使用下面的代码

   private func fetchWallets(){
        let managedObjectContext = AppDelegate.managedContext
        let fetchRequest: NSFetchRequest<Wallet> = Wallet.fetchRequest()
        do {
            wallets = try managedObjectContext.fetch(fetchRequest)
            DispatchQueue.main.async {
               self.tableView.reloadData()
            }
        } catch {
            print(error.localizedDescription)
        }
    }

希望对您有所帮助

我的错...我没有删除自动实现的功能。这解决了我的问题。