当从UITableViewCell
中选择一个单元格时,如何在UICollectionView
之间插入新单元格?这是它的样子:
我正在尝试创建一个家谱(谱图)。当选择父级时,它会显示一个详细信息和子级。怎么做到这一点? 谢谢!
答案 0 :(得分:1)
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
(...)
tableView.insertRows(at: [IndexPaths], with: .top)
}