在静态 table 视图中重复使用 table 单元格 - iOS - Swift
Reuse tablecell in static table view - iOS - Swift
我是新人,正在学习swift
我想在 table 视图中使用静态单元格。我的所有单元格看起来都很相似,所以我想到将 xib 用于 tablecell 并在我的静态 table 视图中使用它。
我目前面临的问题是,当我尝试访问我在 xib 中的标签时,在方法中抛出错误:下面代码中的 ConfigureCell。
线程 1:致命错误:在隐式展开可选值时意外发现 nil
当我没有一个时,为什么它说我正在展开可选的
不知道这里需要做什么/请指教。
下面是我的代码:
class NewTableViewController: UITableViewController {
override func viewDidLoad() {
super.viewDidLoad()
self.tableView.register(ReusableTableViewCell.self, forCellReuseIdentifier:"custom")
}
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return 1
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return 4
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
guard let cell = tableView.dequeueReusableCell(withIdentifier: "custom", for: indexPath) as? ReusableTableViewCell else {
return UITableViewCell()
}
if indexPath.row == 0 {
cell.configureCell(title: "Name", detail: "hello")
}
if indexPath.row == 2 {
cell.configureCell(title: "Age", detail: "23")
}
if indexPath.row == 3 {
cell.configureCell(title: "Dept", detail: "HR")
}
return cell
}
}
class ReusableTableViewCell: UITableViewCell {
@IBOutlet weak var leftLabel: UILabel!
@IBOutlet weak var rightLabel: 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
}
func configureCell(title: String, detail: String) {
leftLabel.text = title //Error Here: Thread 1: Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value
rightLabel.text = detail
}
}
我找到了解决方案。问题在于这一行:
self.tableView.register(ReusableTableViewCell.self, forCellReuseIdentifier:"custom")
将其替换为以下解决了问题:
self.tableView.register(UINib(nibName: "ReusableTableViewCell", bundle: nil), forCellReuseIdentifier: "custom")
我是新人,正在学习swift
我想在 table 视图中使用静态单元格。我的所有单元格看起来都很相似,所以我想到将 xib 用于 tablecell 并在我的静态 table 视图中使用它。
我目前面临的问题是,当我尝试访问我在 xib 中的标签时,在方法中抛出错误:下面代码中的 ConfigureCell。 线程 1:致命错误:在隐式展开可选值时意外发现 nil 当我没有一个时,为什么它说我正在展开可选的
不知道这里需要做什么/请指教。
下面是我的代码:
class NewTableViewController: UITableViewController {
override func viewDidLoad() {
super.viewDidLoad()
self.tableView.register(ReusableTableViewCell.self, forCellReuseIdentifier:"custom")
}
// MARK: - Table view data source
override func numberOfSections(in tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return 1
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return 4
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
guard let cell = tableView.dequeueReusableCell(withIdentifier: "custom", for: indexPath) as? ReusableTableViewCell else {
return UITableViewCell()
}
if indexPath.row == 0 {
cell.configureCell(title: "Name", detail: "hello")
}
if indexPath.row == 2 {
cell.configureCell(title: "Age", detail: "23")
}
if indexPath.row == 3 {
cell.configureCell(title: "Dept", detail: "HR")
}
return cell
}
}
class ReusableTableViewCell: UITableViewCell {
@IBOutlet weak var leftLabel: UILabel!
@IBOutlet weak var rightLabel: 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
}
func configureCell(title: String, detail: String) {
leftLabel.text = title //Error Here: Thread 1: Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value
rightLabel.text = detail
}
}
我找到了解决方案。问题在于这一行:
self.tableView.register(ReusableTableViewCell.self, forCellReuseIdentifier:"custom")
将其替换为以下解决了问题:
self.tableView.register(UINib(nibName: "ReusableTableViewCell", bundle: nil), forCellReuseIdentifier: "custom")