我想在我的应用程序中使用自定义按钮添加和删除行来实现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()
}