使用未声明的类型'CostumTableViewCell'

时间:2016-10-11 04:57:26

标签: ios swift uitableview xcode7.3

我遇到了我正在使用的代码的问题,请帮我解决这个问题

enter image description here

root:wheel

1 个答案:

答案 0 :(得分:0)

请检查您是否包括:

1- import CostumTableViewCell

2-还必须添加问号?之后。

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cellIdentifier = "Cell"
    let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath) as? CostumTableViewCell

如果不行,试试加?在CostumTableViewCell之后?