在Swift 4.2中,可以通过以下方式将选中单元格的状态保存在表视图中:
var selectedIndexPath: IndexPath?
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
selectedIndexPath = indexPath
}
func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
selectedIndexPath = nil
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
if let selectedIndexPath = selectedIndexPath, selectedIndexPath == indexPath {
cell.accessoryType = .checkmark
} else {
cell.accessoryType = .none
}
return cell
}
这样,当用户选择某个单元格时,该单元格将会显示一个选中状态的标记,而其他单元格则不显示标记。当用户取消选择单元格时,所有单元格都不显示标记。
这种方法可以在表视图中保存选中单元格的状态,并在需要时进行相应的处理。在具体应用场景中,可以根据项目需求进行适当的调整和扩展。
推荐的腾讯云相关产品:云服务器(https://cloud.tencent.com/product/cvm),对象存储(https://cloud.tencent.com/product/cos),云数据库 MySQL版(https://cloud.tencent.com/product/cdb_mysql)。
请注意,以上回答仅供参考,具体实现方法可能会因项目需求和开发环境而有所不同。
领取专属 10元无门槛券
手把手带您无忧上云