方法不会覆盖它的超类中的任何方法(错误)

时间:2016-05-10 16:03:25

标签: ios xcode swift override

我正在编写侧边栏,但我发现了一个无法解决的错误

这是代码

override func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath?) -> UITableViewCell?   {
    var cell:UITableViewCell! = tableView.dequeueReusableCellWithIdentifier("cell") as? UITableViewCell!

    if cell == nil{
        cell = UITableViewCell(style: UITableViewCellStyle.Default, reuseIdentifier: "Cell")
    }

    // Configure the cell...

    return cell
}

我删除了override,但后来又遇到了其他问题。

在这个平台上已经出现了类似这样的问题。 但是在阅读完这篇文章之后,我并不知道这个解决方案。

你知道我该做什么吗?

0 个答案:

没有答案