如何使用自定义按钮在tableview中添加行和删除行?

时间:2015-12-15 14:45:32

标签: swift uitableview

我想在我的应用程序中使用自定义按钮添加和删除行来实现Tableview,但我无法这样做,所以任何正文请帮助我?

这里我给出了删除功能的代码。

@IBAction func minusAction(sender: AnyObject)
{
    print("It is a Delete Button");

    let more = UITableViewRowAction(style: .Normal, title: "DELETE") { action, index in            
        self.tableData.removeAtIndex(self.indexPath!.row)
        self.tableView.deleteRowsAtIndexPaths([self.indexPath!], withRowAnimation: UITableViewRowAnimation.Automatic)            
        print("DELETE button tapped")
    }

    more.backgroundColor = UIColor.lightGrayColor()
}

0 个答案:

没有答案