改变细胞高度使细胞覆盖其他细胞迅速uitableview

时间:2016-08-10 13:11:43

标签: ios uitableview swift3

我希望单元格在选中时将其他人推倒,就像在Voice Memos应用程序中一样。但它涵盖了其他细胞。

我的代码:

override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    let cell = tableView.cellForRow(at: indexPath)
    UITableView.animate(withDuration: 0.4) {
        cell?.frame = CGRect(x: (cell?.frame.origin.x)!, y: (cell?.frame.origin.y)!, width: (cell?.bounds.width)!, height: 150)
    }
}

before selection

after selection

怎么做?

0 个答案:

没有答案