将TableView选择添加/删除到数组,勾选标记在滚动时消失 - Swift

时间:2014-11-22 15:59:11

标签: ios arrays uitableview swift

问题1 :滚动时检查标记保持消失。

第2期:需要帮助添加/删除具有唯一ID的数组,以防止重复。

我正在尝试从空数组中插入/删除cellTextLabel。我似乎无法找到一个好的解决方案。这是我尝试过的以及失败的原因。

错误选项1

// Error = Out of range (I understand why)
myArray.insert(cell.textLabel.text, atIndex: indexPath)

错误选项2

// I won't have a way to reference the array item afterwards when I need to remove it. Also, this option allows for the same string to be entered into the array multiple times, which is not good for me.
myArray.insert(cell.textLabel.text, atIndex: 0)

以下是目前为止的代码,非常感谢任何帮助。谢谢。

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let row = indexPath.row
    let cell : UITableViewCell = tableView.dequeueReusableCellWithIdentifier("items", forIndexPath: indexPath) as UITableViewCell

    var myRowKey = myArray[row]
    cell.textLabel.text = myRowKey

    cell.accessoryType = UITableViewCellAccessoryType.None
    cell.selectionStyle = UITableViewCellSelectionStyle.None


    return cell
}

func tableView(tableView: UITableView!, didSelectRowAtIndexPath indexPath: NSIndexPath!) {


    let selectedCell  = tableView.cellForRowAtIndexPath(indexPath) as UITableViewCell!

    if selectedCell.accessoryType == UITableViewCellAccessoryType.None {

    selectedCell.accessoryType = UITableViewCellAccessoryType.Checkmark
    }

    var selectedItem = selectedCell.textLabel.text!

    println(selectedItem)

}

func tableView(tableView: UITableView!, didDeselectRowAtIndexPath indexPath: NSIndexPath!) {

    let deSelectedCell = tableView.cellForRowAtIndexPath(indexPath) as UITableViewCell!

    if deSelectedCell.accessoryType == UITableViewCellAccessoryType.Checkmark {
        deSelectedCell.accessoryType = UITableViewCellAccessoryType.None
    }

    var deSelectedItem = deSelectedCell.textLabel.text!

    println(deSelectedItem)

}

1 个答案:

答案 0 :(得分:0)

问题1:由于didDeselectRowAtIndexPath方法中的以下行,当您滚动时,您的复选标记会一直消失:

let deSelectedCell = tableView.cellForRowAtIndexPath(indexPath) as UITableViewCell!

cellForRowAtIndexPath的调用将创建一个新单元格。它不会修改UITableView中屏幕上当前可见的单元格。这是因为当项目在屏幕上滚动和离开时,可以重复使用单元格,并将新数据加载到它们中。

要保留单元格的选择状态,您需要稍微升级数据模型。现在,您的数据来自myArray String数组。您可以尝试以下内容:

struct Item {
  var name: String // The string value you are putting in your cell
  var isSelected: Bool // The selected status of the cell
}

然后你会定义你的数据:

var myArray = [
    Item(name: "Cell 1 value", isSelected: false),
    Item(name: "Cell 2 value", isSelected: false),
    ...
  ]

您的tableView:didSelectRowAtIndexPath方法看起来更像是这样:

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
     // Toggle the selected state of this cell (e.g. if it was selected, it will be deselected)
    items[indexPath.row].isSelected = !items[indexPath.row].isSelected

     // Tell the table to reload the cells that have changed
    tableView.beginUpdates()
    tableView.reloadRowsAtIndexPaths([indexPath], withRowAnimation: UITableViewRowAnimation.None)
    tableView.endUpdates()

    // Reloading that cell calls tableView:numberOfRowsInSection and refreshes that row within the tableView using the altered data model (myArray array)
  }

下次点击该行时,tableView:didSelectRowAtIndexPath方法将再次触发并切换该单元格的选定状态。告诉重新加载的单元格将刷新屏幕上实际可见的单元格。

问题2 :如果您不了解要保持唯一的数据类型以及如何以可能添加重复项的方式添加/删除数据,您可能需要查看{ {3}}用于从数组中删除重复元素。一种方法是使用一个集合,它不会保留顺序,但会确保元素只出现一次。