如何在Swift中的UITableViewCell之间插入一个新单元格

时间:2017-06-21 10:36:29

标签: ios swift uitableview collections family-tree

当从UITableViewCell中选择一个单元格时,如何在UICollectionView之间插入新单元格?这是它的样子:

我正在尝试创建一个家谱(谱图)。当选择父级时,它会显示一个详细信息和子级。怎么做到这一点? 谢谢!

1 个答案:

答案 0 :(得分:1)

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    (...)
    tableView.insertRows(at: [IndexPaths], with: .top)
}