UITableview没有从superview中删除

时间:2017-07-22 18:28:22

标签: ios swift uitableview

我将使用单元格中的按钮删除UITableView中的单元格。

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "ATTACHMENTCELL", for: indexPath) as! AttachmentTableViewCell
    if let obj=dm.arrayImageTable[indexPath.row] as? [String:Any]
    {
        cell.lblTitle.text=obj["DocumentName"] as? String
        //cell.tag=obj["EmployeeCode"] as! Int
        cell.lblTitle.textColor=com.getfontColor()
        cell.imgvw.image=obj["Imag"] as? UIImage
        cell.btnDel.tag=indexPath.row
        cell.btnDel.addTarget(self, action: #selector(removeFromTable(sender:)), for: .touchUpInside)
    }

    return cell
}


func removeFromTable(sender:UIButton)
{

    var index:Int=sender.tag
    if(index>=dm.arrayImageTable.count)
    {
        index=0
        dm.arrayImageTable.remove(at: 0)
        dm.arrayAttachedDoc.remove(at: 0)
    }
    else
    {
        dm.arrayImageTable.remove(at: index)
        dm.arrayAttachedDoc.remove(at: index)
    }

    self.tblImage.deleteRows(at: [NSIndexPath.init(row: index, section: 0) as IndexPath], with: .left)

    var btnFrame=self.btnApplyLeave.frame
    btnFrame.origin.y=self.btnApplyLeave.frame.origin.y-30
   self.btnApplyLeave.frame=btnFrame
    if(dm.arrayImageTable.count<=0)
    {

        self.tblImage.removeFromSuperview()
    }
}

但我的UITableView并没有删除,虽然计数是0.任何人都可以看到我做错了哪里? 请帮帮我

1 个答案:

答案 0 :(得分:0)

正如我猜测的那样,在numberOfRows您已经返回了arrayImageTable.count。

所以:

if(index>=dm.arrayImageTable.count)
    {
        index=0
        dm.arrayImageTable.remove(at: 0)
        dm.arrayAttachedDoc.remove(at: 0)
    }

总是错的。因为如果在numberOfRow返回arrayImageTable.count,indexPath.row就不能等于arrayImageTable.count。 试试这个:

var index = sender.tag == dm.arrayImageTable.count - 1 ? 0 : sender.tag
dm.arrayImageTable.remove(at: 0)
dm.arrayAttachedDoc.remove(at: 0)
self.tblImage.deleteRows(at: [IndexPath.init(row: index, section: 0)], with: .left)

希望它会对你有所帮助。