我用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
}
答案 0 :(得分:0)
您应该覆盖init函数以加载xib。