iOS Subclass继承父类Xib文件

时间:2017-04-27 02:59:32

标签: ios objective-c xcode

我用xib创建一个superCell,一个子类继承父类,但子类没有xib,当我在tableView(: UITableView, cellForRowAt: IndexPath) -> UITableViewCell协议中初始化子类时,我找不到xib'子视图,怎么办?

override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    //let cell = tableView.dequeueReusableCell(withIdentifier: "reuseIdentifier", for: indexPath)
    let firstCell = FirstTableViewCell.init(style: .default, reuseIdentifier: "cell")

    firstCell.test.text = "subCell"
    return firstCell
}

1 个答案:

答案 0 :(得分:0)

您应该覆盖init函数以加载xib。