gpt4 book ai didi

ios - 如何在 swift 中为 Storyboard使用自定义 uitableviewcell

转载 作者:可可西里 更新时间:2023-11-01 00:38:09 27 4
gpt4 key购买 nike

我正在使用 Storyboard创建自定义单元格。我已将此单元格连接到 Storyboard 中的表格 View :

import UIKit

class NewsCell: UITableViewCell {

@IBOutlet weak var titleLabel: UILabel!
@IBOutlet weak var summaryLabel: UILabel!



override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}

override func setSelected(selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)

// Configure the view for the selected state
}

}

我的 cellforrowatindexpath 和 init 函数如下所示:

var newsItems:[NewsItem]

required init(coder aDecoder:NSCoder){
newsItems = [NewsItem]()

let item1 = NewsItem()
item1.title = "I am so awesome"
item1.summary = "My awesome summary."

newsItems.append(item1)

super.init(coder: aDecoder)
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cellIdentifier = "NewsCell"
var cell: NewsCell! = tableView.dequeueReusableCellWithIdentifier(cellIdentifier) as? NewsCell

if cell == nil {
cell = NewsCell()
}

let item = newsItems[indexPath.row]

if let titleLabel = cell.titleLabel{
titleLabel.text = item.title
}

return cell
}

当我这样做时,我的单元格在我的表格 View 中显示为空白。我做错了什么?

最佳答案

在我们处理您的阵列之前,让我们先让基本单元开始工作:

class NewsCell: UITableViewCell {

@IBOutlet weak var titleLabel: UILabel!
@IBOutlet weak var summaryLabel: UILabel!

}

在你的表类中:

override func viewDidLoad() {
super.viewDidLoad()

self.tableView.registerNib(UINib(nibName: "NewsCell", bundle: nil)!,
forCellReuseIdentifier: "NewsCell")

let title = "I am so awesome"
let summary = "My awesome summary."

}


func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {

let cell = tableView.dequeueReusableCellWithIdentifier("NewsCell", forIndexPath: indexPath) as NewsCell


cell.titleLabel = title
cell.SummaryLabel = summary

return cell
}

然后我们可以帮助您处理字符串数组。

如果在 Storyboard 中,您可以忘记注册 Nib 代码。但值得学习如何去做。

关于ios - 如何在 swift 中为 Storyboard使用自定义 uitableviewcell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26433795/

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