作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
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/
我是一名优秀的程序员,十分优秀!