Deleting a Row from a UITableView in Swift 3?

前端 未结 8 1331
难免孤独
难免孤独 2020-11-28 08:31

I\'m new to coding and learning swift, I am following a tutorial for swift 2 and working with swift 3 so there are a few issues I have when following along, this being one I

8条回答
  •  迷失自我
    2020-11-28 09:10

    func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
    
        if editingStyle == .delete {
    
            self.animals.remove(at: indexPath.row)
    
            self.dataDisplayTbleView.reloadData()
        }
    
    }
    

提交回复
热议问题