我试图用自定义单元格(包括两个标签和一个图像视图)制作一个简单的UITableView,但是我无法用数据填充该表。
我为数据创建了以下结构:
struct feed {
var title: String
var subtitle: String
var image: String
}
在这里,我定义了一些示例数据:
var myfeed = [feed(title: "Test Feed", subtitle: "Welcome to feedFeed", image: "https://www.demo.com/imnage1.png"), feed(title: "Number 2", subtitle: "Demo?", image: "https://www.demo.com/imnage2.png")]
我已经在我的情节提要中创建了UITableView,已经配置了“自定义”单元格,并且正在使用单元格标识符“ LabelCell”。 我为UITableViewCell类创建了一个单独的cocoaTouchclass文件:
import UIKit
class ehappyTableViewCell: UITableViewCell {
@IBOutlet weak var headlineTitleLabel: UILabel!
@IBOutlet weak var headlineTextLabel: UILabel!
@IBOutlet weak var headlineImageView: UIImageView!
override func awakeFromNib() {
super.awakeFromNib()
func tableView(_ tableView: UITableViewCell, heightForRowAt indexPath: IndexPath) -> CGFloat
{
return 100.0;//Choose your custom row height
}
// Initialization code
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
// Configure the view for the selected state
}
}
在ViewController文件中,我有以下代码:
@IBOutlet weak var table: UITableView!
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return myfeed.count
}
func tableView(_ tableViwq: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell:ehappyTableViewCell = self.table.dequeueReusableCell(withIdentifier: "LabelCell", for: indexPath) as! ehappyTableViewCell!
let headline = myfeed[indexPath.row]
cell.headlineTitleLabel?.text = headline.title
cell.headlineTextLabel?.text = headline.subtitle
let urlWithoutHTTP = headline.image
let httpAddition = "https:"
let addition = "\(httpAddition)\(urlWithoutHTTP)"
let url = URL(string: addition)
DispatchQueue.global().async {
let data = try? Data(contentsOf: url!) //make sure your image in this url does exist, otherwise unwrap in a if let check / try-catch
DispatchQueue.main.async {
cell.headlineImageView.image = UIImage(data: data!)
}
}
return cell
}
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
return 140.0;//Choose your custom row height
}
override func viewDidLoad() {
super.viewDidLoad()
self.table.delegate = self
self.table.dataSource = self
}
当我运行该应用程序时,该表将不会填充我创建的示例数据。 关于我可以做什么的任何建议?
答案 0 :(得分:0)
如果您的单元格是 xib ,那么您必须通过在 viewDidLoad 中编写以下代码来注册该单元格>
self.table.register(UINib(nibName: "ehappyTableViewCell", bundle: nil), forCellReuseIdentifier: "LabelCell")
如果是在情节提要中的视图控制器内部设计的,则无需注册
检查是否提供了委托和数据源
尝试将以下行替换为行
let cell = tableView.dequeueReusableCell(withIdentifier: "LabelCell") as? ehappyTableViewCell
答案 1 :(得分:-1)
您为 cellForRowAt 方法拼写错误
func tableView(_ tableViwq: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
}
正确方法
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
}