带有XIB Swift的UITableViewCell子类

时间:2015-02-12 23:17:12

标签: ios uitableview swift

我有一个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方法中初始化此单元格并仍然可以重用它?或者我是否必须使用重用标识符注册类本身?

2 个答案:

答案 0 :(得分:54)

惯常的NIB流程是:

  1. 使用重用标识符注册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")
    }
    
  2. 定义您的自定义单元格类:

    import UIKit
    
    class NameInput: UITableViewCell {
    
        @IBOutlet weak var firstNameLabel: UILabel!
        @IBOutlet weak var lastNameLabel: UILabel!
    
    }
    
  3. 在Interface Builder中创建一个NIB文件(步骤1中引用的名称相同):

    • 在NIB中指定tableview单元格的基类以引用自定义单元格类(在步骤2中定义)。

    • 将NIB中单元格中的控件之间的引用连接到自定义单元格类中的@IBOutlet引用。

  4. 然后,您的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
    }
    
  5. 我从你的例子中不完全确定你在单元格上放置了什么控件,但上面有两个UILabel控件。连接对您的应用有意义的@IBOutlet个引用。

答案 1 :(得分:3)

您没有初始化viewDidLoad中的单元格。您应该使用表视图注册XIB,而不是类。您应该在tableView:cellForRowAtIndexPath:中设置标签和文本字段(可能通过调用NameInput上的实例方法)。