cell的删除操作无法加载
optional func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) 是UITableViewDataSource 里的方法,不是 UITableViewDelegate 里的!重写这个方法后,前端没有展示删除功能,问题出在哪了?
optional func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) 是UITableViewDataSource 里的方法,不是 UITableViewDelegate 里的!重写这个方法后,前端没有展示删除功能,问题出在哪了?
2015-04-17
//class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate
//实现代码
func tableView(tableView: UITableView, commitEditingStyle editingStyle: UITableViewCellEditingStyle, forRowAtIndexPath indexPath: NSIndexPath) {
if editingStyle == UITableViewCellEditingStyle.Delete {
todos.removeAtIndex(indexPath.row)
tableView.reloadData()
}
}
举报