gpt4 book ai didi

ios - 自定义 tableview 单元格未出现

转载 作者:行者123 更新时间:2023-11-28 15:10:34 25 4
gpt4 key购买 nike

我已经为注册页面创建了一个核心数据模型,该模型工作正常,但是当我将表格 View 附加到该注册页面时,我的自定义表格单元格数据没有出现。

ViewController.swift

import UIKit
import Foundation

class FifthViewController: UIViewController,UITableViewDataSource,UITableViewDelegate {
@IBOutlet weak var Table1: UITableView!

var array = ["central","gvk","forum"]

public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return array.count
}

public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
{
let cell = Table1.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! TableViewCell

cell.label1.text = self.array[indexPath.row]

return cell
}
}

表格 View 单元格

import UIKit

class TableViewCell: UITableViewCell {
@IBOutlet weak var label1: UILabel!
}

最佳答案

我已经连接了数据源和委托(delegate),即使当我使用没有自定义的简单 tableview 时它没有显示数据它工作正常,所以我想到了使用重新加载数据。

关于ios - 自定义 tableview 单元格未出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47736006/

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