删除并添加视图中的行基于NSTableView

问题描述 投票:2回答:2

我做了IOS开发但是OSX新手。我遇到的问题是我通过单击表格行中的按钮成功删除了NStableView中的行,但是当我单击添加按钮时,删除的行再次出现,然后不会被删除。这是我的删除功能

   func delIssue(_ sender:NSButton)
{
  let btn = sender
  if btn.tag >= 0
  {
    let issueValue = issueKeys[btn.tag]
    for index in 0..<issueName.count
    {
      if issueValue == issueName[index]
      {
        issueName.remove(at: index)

        rowCount = rowCount - 1
        self.tableView.removeRows(at: NSIndexSet.init(index: index) as IndexSet , withAnimation: .effectFade)
        self.tableView.reloadData()
        break
      }
    }
  }
}

rowCount基本上是变量,我在添加行时递增,在分别删除行时递减。我添加Row功能是

    @IBAction func addRow(_ sender: Any)
  {
    rowCount += 1
    DispatchQueue.main.async
    {
      self.tableView.reloadData()
    }
  }

而数据来源是

  func numberOfRows(in tableView: NSTableView) -> Int
{
  return rowCount
}
swift macos nstableview nstablecellview
2个回答
4
投票

不要将标签分配给NSTableView中的按钮

NSTableView提供了一种获取当前行的非常方便的方法:该方法

func row(for view: NSView) -> Int


动作中的代码可以减少到3行

@IBAction func delIssue(_ sender: NSButton)
{
  let row = tableView.row(for: sender)
  issueName.remove(at: row)
  tableView.removeRows(at: IndexSet(integer: row), withAnimation: .effectFade)
}

要添加行,请将值附加到数据源数组,然后调用insertRows

@IBAction func addRow(_ sender: Any)
{
    let insertionIndex = issueName.count
    issueName.append("New Name")
    tableView.insertRows(at: IndexSet(integer:insertionIndex), withAnimation: .effectGap)
}

注意:

切勿在reloadData之后致电insert- / removeRows。你摆脱了动画,插入/删除方法确实更新了UI。方法beginUpdatesendUpdates对于单个插入/移动/移除操作是无用的。


0
投票

最后我发现正确删除行,这就是我做的方式

 self.tableView.beginUpdates()
    self.tableView.removeRows(at: indexSet , withAnimation: .effectFade)
    self.tableView.endUpdates()
© www.soinside.com 2019 - 2024. All rights reserved.