gpt4 book ai didi

ios - UITableView 静态单元格上的单元格始终为零

转载 作者:行者123 更新时间:2023-11-30 13:50:51 25 4
gpt4 key购买 nike

我有一个 UITableViewController,其中有三个 UITableViewCell 静态

我想为单元格内的一个标签创建一个导出,我无法拖放,我通过互联网阅读,人们建议执行以下操作

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier(CellIdentefiers.oneMenuCell.rawValue)
let label = cell!.viewWithTag(1) as! UILabel
label.font = UIFont(name: Constants.centuryGothic.rawValue, size: CGFloat(17))
return cell!
}

我给了标签 tag = 1

我的问题是单元格始终为零,尽管它具有正确的标识符。请看 enter image description here

我错过了什么?

更新

人们要求这个

enum CellIdentefiers : String {
case numberOfPeopleCell
case dayCell
case timeCell
case preferencesCell
case oneHistoryCell
case oneConfirmationCell
case oneMenuCell
}

最佳答案

您的枚举需要原始值,即

enum CellIdentefiers : String {
case numberOfPeopleCell = "numberOfPeopleCell"
case dayCell = "dayCell"
case timeCell = "timeCell"
case preferencesCell = "preferencesCell"
case oneHistoryCell = "oneHistoryCell"
case oneConfirmationCell = "oneConfirmationCell"
case oneMenuCell = "oneMenuCell"
}

关于ios - UITableView 静态单元格上的单元格始终为零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34302258/

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