用于在 Swift 中删除 UITableView 中的行的编辑按钮不起作用

Posted

技术标签:

【中文标题】用于在 Swift 中删除 UITableView 中的行的编辑按钮不起作用【英文标题】:Edit button for deleting rows in UITableView in Swift is not working 【发布时间】:2015-04-15 20:02:37 【问题描述】:

我有一个带有自定义单元格类和导航控制器的表格。我向导航控制器添加了一个编辑按钮,并为视图控制器创建了一个 IBAction:

@IBAction func doEdit(sender: AnyObject)   
    self.tableView.setEditing(true, animated: true)

Xcode 告诉我:

Cannot invoke 'setEditing' with an argument list of type '(Bool, animated: Bool)'

我也在 viewDidLoad 方法中尝试了navigationItem.rightBarButtonItem = editButtonItem(),但是那里没有显示删除图标。

编辑:我为 UITableView 创建了一个名为 table 的插座。当输入self.table.setEditing(true, animated: true) 时,上述错误不再出现,但应用程序在单击编辑按钮时崩溃。代码如下:

import UIKit

var arr = ["1", "2", "3"]

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource 

@IBOutlet weak var table: UITableView!

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int 
    return arr.count


func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell 
    let cell: CustomCellClass = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! CustomCellClass   
    cell.cellTitle.text = arr[indexPath.row]   
    cell.backgroundColor = UIColor(red: 242.0/255.0, green: 157.0/255.0, blue: 48.0/255.0, alpha: 1.0)     
    return cell   


@IBOutlet weak var editButton: UIBarButtonItem!

@IBAction func doEdit(sender: AnyObject) 
    self.table.setEditing(true, animated: true)


override func viewDidLoad() 
    super.viewDidLoad()       
    // navigationItem.rightBarButtonItem = editButtonItem()     
    // Do any additional setup after loading the view, typically from a nib.


override func didReceiveMemoryWarning() 
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.


override func viewDidAppear(animated: Bool) 
    self.table.reloadData()
 

【问题讨论】:

您的“tableView”是否作为IBOutlet 连接到该视图控制器中的表视图? 是的,它被称为“表”。请参阅上面的更新问题。 【参考方案1】:

确保您的 tableView 从Interface Builder 连接为IBOutlet

您可以通过从 IB 按住 ctrl 拖动到您的代码来做到这一点。

【讨论】:

【参考方案2】:

现在可以使用了,我删除了该插座并创建了一个名为tableView 的新插座。

【讨论】:

以上是关于用于在 Swift 中删除 UITableView 中的行的编辑按钮不起作用的主要内容,如果未能解决你的问题,请参考以下文章

在 Swift 中从 UITableView 中删除一行?

在 Swift 中删除分组 UITableView 上方的空间

如何在 Swift 中从 Core Data 中删除数据时删除 UITableView 行?

在 Swift 3 中基于 UITableView 中的单元格选择删除文件

Swift 3.0 无法从 UITableView 中删除一行

如何在 Swift / iOS 中从 UITableView 中删除行并从 UserDefaults 中更新数组