我正在使用swift的tableview单元格,我想用删除按钮删除一个特定的单元格。我尝试通过storyboard
按钮,但它不起作用。
我能为此做些什么?
答案 0 :(得分:0)
为tableview ::
尝试此方法func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath)
{
if editingStyle == .Delete
{
//code for delete
}
}