【发布时间】:2019-05-11 00:09:11
【问题描述】:
我已经构建了自己的 UITableViewCell(完全通过代码,没有界面构建器),但我得到了休闲异常:
[...] NSInternalInconsistencyException',原因:'无法加载 NIB 捆绑:'NSBundle [...]
我相当确定我不需要使用 awakeFromNib()(请参阅代码),但这是我在将其作为“不可重用”传递时使其工作的唯一方法
// this works
func tableView(_ tableView: UITableView,
cellForRowAt indexPath: IndexPath [...] {
return myCustomCell()
// this fails
tableView.register(MyCustomCell.self, forCellReuseIdentifier: "foo")
//throws immediately after this line: "[...] Could not load NIB in bundle"
我的自定义单元格:
class TextValueTableViewCell: UITableViewCell {
let textField: UITextField = UITextField(
frame: CGRect(x: 30, y: 5, width: 350, height: 25)
)
let label = UILabel(frame: CGRect(x: 30, y: 5, width: 350, height: 25))
override init(style: UITableViewCell.CellStyle, reuseIdentifier: String?) {
super.init(style: style, reuseIdentifier: reuseIdentifier)
self.awakeFromNib();
}
override func awakeFromNib() {
super.awakeFromNib()
self.label.text = "oh"
self.contentView.addSubview(self.label)
self.contentView.addSubview(self.textField)
self.textField.rightAnchor.constraint(equalTo: self.contentView.rightAnchor, constant: -25).isActive = true
self.textField.translatesAutoresizingMaskIntoConstraints = false;
self.textField.centerYAnchor.constraint(equalTo: self.contentView.centerYAnchor, constant: 0).isActive = true
self.textField.widthAnchor.constraint(equalTo: self.label.widthAnchor, constant: 0).isActive = true
self.textField.textAlignment = .right;
self.textField.placeholder = "Account Name"
}
override func setSelected(_ selected: Bool, animated: Bool) {
super.setSelected(selected, animated: animated)
}
required init?(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)!
}
}
正如我所说,我没有使用界面构建器(我也没有计划使用它)所以我不确定它为什么会尝试从捆绑包中加载一些东西。具体来说,那我不是必须注册为NIB吗?
tableView.register(<#T##nib: UINib?##UINib?#>, forCellReuseIdentifier: <#T##String#>)
【问题讨论】:
-
为什么要手动拨打
awakeFromNib()?这是nib的一种方法。 -
当我传递我的自定义单元格“return myCustomCell()”时,awakeFromNib() 似乎没有被调用 -> 但我可能没有正确使用它:)
-
删除
awakeFromNib函数。将该代码的其余部分移至“设置”函数,super.awakeFromNib()行除外。
标签: ios swift xcode uitableview