xibcell注册并使用
2017-04-11 本文已影响34人
学习之路
/// 注册cell
let nib = UINib(nibName: "ServiceReportDetailTableViewCell", bundle: nil)
tableView.register(nib, forCellReuseIdentifier: "ServiceReportDetailTableViewCell")
//使用
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "ServiceReportDetailTableViewCell") as! ServiceReportDetailTableViewCell
return cell
}