我有一个UITableViewCell
子类NameInput
,它使用自定义init
方法连接到xib。
class NameInput: UITableViewCell {
class func make(label: String, placeholder: String) -> NameInput {
let input = NSBundle.mainBundle().loadNibNamed("NameInput", owner: nil, options: nil)[0] as NameInput
input.label.text = label
input.valueField.placeholder = placeholder
input.valueField.autocapitalizationType = .Words
return input
}
}
有没有办法可以在viewDidLoad
方法中初始化此单元格并仍然可以重用它?或者我是否必须使用重用标识符注册类本身?
答案 0 :(得分:54)
惯常的NIB流程是:
使用重用标识符注册NIB。在Swift 3中:
override func viewDidLoad() {
super.viewDidLoad()
tableView.register(UINib(nibName: "NameInput", bundle: nil), forCellReuseIdentifier: "Cell")
}
在Swift 2中:
override func viewDidLoad() {
super.viewDidLoad()
tableView.registerNib(UINib(nibName: "NameInput", bundle: nil), forCellReuseIdentifier: "Cell")
}
定义您的自定义单元格类:
import UIKit
class NameInput: UITableViewCell {
@IBOutlet weak var firstNameLabel: UILabel!
@IBOutlet weak var lastNameLabel: UILabel!
}
在Interface Builder中创建一个NIB文件(步骤1中引用的名称相同):
在NIB中指定tableview单元格的基类以引用自定义单元格类(在步骤2中定义)。
将NIB中单元格中的控件之间的引用连接到自定义单元格类中的@IBOutlet
引用。
然后,您的cellForRowAtIndexPath
将实例化单元格并设置标签。在Swift 3中:
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! NameInput
let person = people[indexPath.row]
cell.firstNameLabel.text = person.firstName
cell.lastNameLabel.text = person.lastName
return cell
}
在Swift 2中:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! NameInput
let person = people[indexPath.row]
cell.firstNameLabel.text = person.firstName
cell.lastNameLabel.text = person.lastName
return cell
}
我从你的例子中不完全确定你在单元格上放置了什么控件,但上面有两个UILabel
控件。连接对您的应用有意义的@IBOutlet
个引用。
答案 1 :(得分:3)
您没有初始化viewDidLoad
中的单元格。您应该使用表视图注册XIB,而不是类。您应该在tableView:cellForRowAtIndexPath:
中设置标签和文本字段(可能通过调用NameInput
上的实例方法)。