gpt4 book ai didi

ios - UITableView - 不显示

转载 作者:行者123 更新时间:2023-11-29 06:02:48 25 4
gpt4 key购买 nike

我已经设置了tableview很多次,但不知道为什么它没有显示任何内容。我在 storyboard 文件上添加了 tableview,在 ViewController 文件上添加了引用,并设置了 datasource Storyboard上的委托(delegate)。在 viewDidLoad 上注册了单元格,并最终在 TableViewCell 上添加了 reusableIdentifier。这是我的代码,其中包含详细配置:

import UIKit

struct ViewControllerConstants {
static let kCellIdentifier = "TableViewCell"
static let kNibName = "TableViewCell"
}

class ViewController: UIViewController {

var cellImageNames : [String] = ["image1","image2","image3","image4","image5","image6"]

@IBOutlet weak var tableView: UITableView!

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

self.tableView.register(UINib.init(nibName: ViewControllerConstants.kNibName, bundle: nil), forCellReuseIdentifier: ViewControllerConstants.kCellIdentifier)

}

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

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

}

extension ViewController : UITableViewDataSource {
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return cellImageNames.count
}
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

if let cell = tableView.dequeueReusableCell(withIdentifier: ViewControllerConstants.kCellIdentifier, for: indexPath) as? TableViewCell {

cell.contentImageView.image = UIImage.init(named: cellImageNames[indexPath.row])
return cell

}



return UITableViewCell.init()

}


}

extension ViewController : UITableViewDelegate {

}

TableView Custom Cells

TableView Custom Cell 2

Storyboard References details

最佳答案

尝试删除 Storyboard中单元格的标识符。

关于ios - UITableView - 不显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51379724/

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