我正在编写侧边栏,但我发现了一个无法解决的错误
这是代码
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
,但后来又遇到了其他问题。
在这个平台上已经出现了类似这样的问题。 但是在阅读完这篇文章之后,我并不知道这个解决方案。
你知道我该做什么吗?