我如何修复“方法不会覆盖其超类中的任何方法。”?

时间:2015-09-19 18:48:52

标签: ios uitableview override

覆盖func tableView(tableView:UITableView,cellForRowAtIndexPath indexPath:NSIndexPath) - > UITableViewCell {

    let cellIdentifier = "Cell"
    let cell = tableView.dequeueReusableCellWithIdentifier(cellIdentifier, forIndexPath: indexPath) as! CustomTableViewCell

    // Configure the cell...
    cell.nameLabel.text = restaurantNames[indexPath.row]
    cell.thumbnailImageView.image = UIImage(named: restaurantImages[indexPath.row])
    cell.locationLabel.text = restaurantLocations[indexPath.row]
    cell.typeLabel.text = restaurantTypes[indexPath.row]

    cell.accessoryType = restaurantIsVisited[indexPath.row] ? .Checkmark : .None

    // Circular image
    cell.thumbnailImageView.layer.cornerRadius = cell.thumbnailImageView.frame.size.width / 2
    cell.thumbnailImageView.clipsToBounds = true

    return cell
}

2 个答案:

答案 0 :(得分:6)

只需从overrideeditActionsForRowAtIndexPath函数声明中删除commitEditingStyle字即可。

答案 1 :(得分:1)

你应该分享你的全班。虽然,您似乎没有覆盖基类中的任何方法。从方法中删除override关键字,或者确定存在具有相同签名(您要覆盖的)Overridable方法的正确BaseClass,然后正确使用extends关键字

我认为您应首先使用以下术语: MethodOverriding,BaseClass(或SuperClass)