我创建了带有图像视图和标签的xib文件( CustomView )。名为 CustomView.swift 的类,它有出口。我需要的是在单元格中使用xib而不是在单元格本身中进行设计。如果有可能,那么如何使用 CustomView.swift 中的出口到 SecondTableViewController.swift
我的 CustomView.swift
class CustomView: UITableViewCell {
@IBOutlet weak var CImageView: UIImageView!
@IBOutlet weak var CLabel1: UILabel!
/*
}
SecondTableViewController.swift
override func viewDidLoad() {
super.viewDidLoad()
tableView.registerNib(UINib(nibName: "CustomView", bundle: nil), forCellReuseIdentifier: "Cell")
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell")as! CustomView
return cell
}
显示错误error screen