当前位置:  开发笔记 > 编程语言 > 正文

UITableViewCell'没有成员'dequeueReusableCellWithIdentifier'

如何解决《UITableViewCell'没有成员'dequeueReusableCellWithIdentifier'》经验,为你挑选了1个好方法。



1> rmaddy..:

你的tableView出口被误认为是一个UITableViewCell而不是一个UITableView.

@IBOutlet weak var tableView: UITableView!

BTW - 在各种数据源和委托方法中,使用tableView参数而不是访问属性.

例:

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("todoCell") as! UITableViewCell
    return cell
}

推荐阅读
雯颜哥_135
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有