重新加载 table 数据时未调用 CellForRowAtIndexPath

CellForRowAtIndexPath not Called when reloading table data

我已经完成了很多答案,例如 this one,但我仍然卡住了。

我有一个带有 collectionView 和 searchController 的 viewcontroller。当用户搜索时,我想在 collectionView 之上显示一个 UITableView。我正在尝试以编程方式添加表格视图 b/c 它是我正在显示的简单文本标签

我能够在我的表的 viewdidload 中显示虚拟数组的搜索结果viewcontroller class。但是,当我得到实际结果时,我只能在 numberOfRows 函数中打印它们。

所有帮助将不胜感激,这是我的代码:

这是我的 TableView Class:

import UIKit

class HashtagSearchList: UITableViewController {

    var hashtagListTableview = UITableView()
    var hashtagList = [String]()

    override func viewDidLoad() {
        super.viewDidLoad()

        hashtagList = ["One", "Two", "Three"]
        hashtagListTableview.delegate = self
        hashtagListTableview.dataSource = self
    }

    // MARK: - Table view data source

    //I don't need this, but added it based on some answers... didn't help
    override func numberOfSections(in tableView: UITableView) -> Int {
        return 1
    }

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

        //All these print statements show correct values
        print("List Count = \(hashtagList.count)")
        print("List of Strings: \(hashtagList)")
        print("frame size = \(tableView.frame)")
        return hashtagList.count
    }

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

        //This print statement only fires on ViewdidLoad
        print("cellForRowAt = \(hashtagList[indexPath.row])")
        cell.textLabel?.text = hashtagList[indexPath.row]
        cell.backgroundColor = .red

        return cell
    }
}

这是我的 ViewController / SearchController 代码:

class ExploreVC: UIViewController {

    var hashtagSearchController = HashtagSearchList()

    override func viewDidLoad() {
        super.viewDidLoad()
        //Search Controller
        navigationItem.searchController = searchController
        searchController = UISearchController(searchResultsController: hashtagSearchController)
    }

    //......

    // SEARCH CONTROLLER

    extension ExploreVC: UISearchResultsUpdating {
        func updateSearchResults(for searchController: UISearchController) {
            let searchText = searchController.searchBar.text

            if searchText == "" { return }

            PostFirebase.getHashtagList(hashtag: searchText) { (hashtagList) in

                self.hashtagSearchController.hashtagListTableview.frame = CGRect(x: 0.0, y: 0.0, width: self.view.bounds.width, height: self.view.bounds.height)

                self.hashtagSearchController.hashtagList = hashtagList
                //self.hashtagSearchController.hashtagListTableview.reloadData()

                DispatchQueue.main.async {
                    self.hashtagSearchController.hashtagListTableview.reloadData()
                }
            }
        }
    }
}

这是来自 viewDidLoad 的表视图,从这里开始它永远不会改变

您在 HashtagSearchList 中初始化了 hashtagListTableview,但没有添加布局约束。默认情况下,它将有 .zero 个框架并且不会显示在屏幕上。

我猜屏幕上的 table 视图是来自 UITableViewControllertableView。这就是为什么当您调用 self.hashtagSearchController.hashtagListTableview.reloadData().

时没有任何反应的原因

要修复它,请尝试使用 tableView 而不是 hashtagListTableview。替换

self.hashtagSearchController.hashtagListTableview.reloadData()

self.hashtagSearchController.tableView.reloadData()