gpt4 book ai didi

ios - fatal error : Can't unwrap Optional. 无自定义表格单元格

转载 作者:行者123 更新时间:2023-11-28 09:21:00 24 4
gpt4 key购买 nike

我正在尝试使用 Swift 语言将文本分配给自定义 Tableview 单元格中的 UILabel。但它给出错误说明 "fatal error: Can't unwrap Optional.None"

我的Custom Cell的代码如下

import UIKit

class NameTableCell: UITableViewCell {

@IBOutlet var lblName: UILabel?

init(style: UITableViewCellStyle, reuseIdentifier: String!) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
// Initialization code
}


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

// Configure the view for the selected state
}

}

我在我的 VIewController 中使用它的方式如下

func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell!
{
var cell:NameTableCell = self.tblNames.dequeueReusableCellWithIdentifier("nameCell", forIndexPath: indexPath) as NameTableCell
cell.lblName!.text="test"
return cell
}

我也按照

中的建议尝试了上述功能

https://stackoverflow.com/a/24113844/1030951

但无法成功并得到相同的错误。请帮助我解决问题。

最佳答案

那……呢

 cell.textLabel.text = "test"

关于ios - fatal error : Can't unwrap Optional. 无自定义表格单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24532542/

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