gpt4 book ai didi

ios - 如何在推送表格 View 单元格时手动隐藏它?

转载 作者:行者123 更新时间:2023-11-29 01:53:59 26 4
gpt4 key购买 nike

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
//hide this cell.
}

奖金 - 有没有办法“淡出”效果,使其不那么刺耳?

最佳答案

here is a great tutorial on this topic

长话短说,做这样的事情

    override func tableView(tableView: UITableView,
commitEditingStyle editingStyle: UITableViewCellEditingStyle,
forRowAtIndexPath indexPath: NSIndexPath) {
switch editingStyle {
case .Delete:
// remove the deleted item from the model
self.items.removeAtIndex(indexPath.row)

// remove the deleted item from the `UITableView`
self.tableView.deleteRowsAtIndexPaths([indexPath], withRowAnimation: .Fade)
default:
return
}
}

关于ios - 如何在推送表格 View 单元格时手动隐藏它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31094280/

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