gpt4 book ai didi

swift - UITableViewDataSource 方法不起作用

转载 作者:行者123 更新时间:2023-11-28 13:42:27 26 4
gpt4 key购买 nike

数据源方法没有被触发我的 tableView 仍然是空的。使用断点,我可以看到数据源从未执行过我不明白为什么以及如何

import UIKit

class SearchResultsViewController: BaseViewController {
@IBOutlet var tableView: UITableView!
let viewModel = SearchResultsViewModel()
let searchController = UISearchController(searchResultsController: nil)
var data: [Result] = []
var searchActive : Bool = false
var action: Action?

lazy var dataSource: SearchResultDataSource? = {
guard let results = self.viewModel.data else { return nil }
return SearchResultDataSource(items: results)
}()

override func viewDidLoad() {
super.viewDidLoad()
configureView()
loadData()
}
private func loadData() {

viewModel.search(term: "eminem", mediaType: .music(entity: .song, attribute: nil), country: .unitedStates, completion: { err in
if err == nil {
guard let results = self.viewModel.data else { return }
self.tableView.dataSource = SearchResultDataSource(items: results)
self.tableView.reloadData()
} else {
AlertDialogView.build(with: String(describing: err?.errorDescription), vc: self)
}
})
}
private func configureView() {
tableView.register(UINib(nibName: "SearchResultTableViewCell", bundle: nil), forCellReuseIdentifier: SearchResultTableViewCell.identifier)
configureSearchBarForTableView()
tableView.delegate = self
}
}

**这是我的数据源类**数据源方法未被触发我的 tableView 仍然是空的。使用断点,我可以看到数据源从未执行过我不明白为什么以及如何

在一个单独的文件中,这是我实现行数等的地方......

class SearchResultDataSource: NSObject {
private var results: [Result]
init(items: [Result]) {
self.results = items
super.init()
}
// MARK: - Helper
func update(with data: [Result]) {
results = data
}
func result(at indexPath: IndexPath) -> Result {
return results[indexPath.row]
}
}

// MARK: - UITableDataSource
extension SearchResultDataSource: UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return results.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
// guard let cell = tableView.dequeueReusableCell(withIdentifier: SearchResultTableViewCell.identifier, for: indexPath) as? SearchResultTableViewCell else {
// return UITableViewCell()
// }


guard let cell = tableView.dequeueReusableCell(withIdentifier: SearchResultTableViewCell.identifier, for: indexPath) as? UITableViewCell else {
return UITableViewCell()
}
//let result = results[indexPath.row]
//let viewModel = SearchCellViewModel(with: result)
//cell.configure(with: viewModel)
cell.textLabel?.text = "cell"
return cell
}
}

最佳答案

您希望在 Controller 上保留对数据源的强引用作为属性,这样它就不会被释放。

根据您现有的代码,您可以像这样用一个空数组初始化它:

class SearchResultsViewController: BaseViewController {
...

var dataSource = SearchResultDataSource(items: [])

...
}

然后在 loadData() 函数中,您可以使用搜索结果调用 update(with:) 方法。

private func loadData() {
viewModel.search(term: "eminem", mediaType: .music(entity: .song, attribute: nil), country: .unitedStates, completion: { err in
if err == nil {
guard let results = self.viewModel.data else { return }
self.dataSource.update(with: results)
self.tableView.reloadData()
} else {
AlertDialogView.build(with: String(describing: err?.errorDescription), vc: self)
}
})
}

关于swift - UITableViewDataSource 方法不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55857419/

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