美文网首页
xibcell注册并使用

xibcell注册并使用

作者: 学习之路 | 来源:发表于2017-04-11 17:29 被阅读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
    }
    

    相关文章

      网友评论

          本文标题:xibcell注册并使用

          本文链接:https://www.haomeiwen.com/subject/dceuattx.html