gpt4 book ai didi

ios - 从正在删除的 UITableViewCell 中获取标题

转载 作者:行者123 更新时间:2023-11-30 12:20:10 25 4
gpt4 key购买 nike

我希望能够获取正在使用 commit editStyle: UITableViewCellEditingStyle 删除的 UITableViewCell 的标题。这是您需要了解的我的代码。

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
var cell : FavoritesTableViewCell! = tableView.dequeueReusableCell(withIdentifier: "Favorites Cell") as! FavoritesTableViewCell
if(cell == nil)
{
cell = Bundle.main.loadNibNamed("Favorites Cell", owner: self, options: nil)?[0] as! FavoritesTableViewCell;
}

cell.songTitle.text=favoriteSongs[indexPath.row].title

return cell as FavoritesTableViewCell
}

func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {

if editingStyle == .delete {

// remove the item from the data model
favoriteSongs.remove(at: indexPath.row)

// delete the table view row
tableView.deleteRows(at: [indexPath], with: .fade)
let propertylistSongs = favoriteSongs.map{ $0.propertyListRepresentation }
UserDefaults.standard.set(propertylistSongs, forKey: "favoriteSongs")


} else if editingStyle == .insert {

}
}

我想这样做的原因是我可以为 UserDefaults 创建一个 key 。我当时在想:

    var cell : FavoritesTableViewCell! = tableView.dequeueReusableCell(withIdentifier: "Favorites Cell") as! FavoritesTableViewCell
UserDefaults.standard.set(false, forKey: "liked\(String(describing: cell.songTitle.text))")

但是,我想这不起作用,因为每当引用 UserDefaults bool 时,Key 都不起作用。因此,我需要从正在删除的 UITableViewCell 中获取 SongTitle.text。有什么想法吗?

最佳答案

简单的解决方案就在这里

我从您的代码中发现,首先您要从数组中删除该对象,但您可以从该索引中获取该歌曲的标题,而不是删除它

这里是详细说明

func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {

if editingStyle == .delete {

print(favoriteSongs[indexPath.row]) //Here is your title for the deleted song

// remove the item from the data model
favoriteSongs.remove(at: indexPath.row)

// delete the table view row
tableView.deleteRows(at: [indexPath], with: .fade)

} else if editingStyle == .insert {

}
}

关于ios - 从正在删除的 UITableViewCell 中获取标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44891406/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com