How can l put TableView inside CollectionViewCell?
问题 I have a tableView with several cells (created by MVVM-architecture). In ViewController I fill my tableView like this: tbv.registerCells( withModels: FirstViewModel.self, SecondViewModel.self, ThirdViewModel.self) My task is to put my TableView in one cell of CollectionView. I thought l have to create CollectionView in my ViewController, after it create CollectionViewCell and CollectionCellViewModel, but how to do it exactly I don't understand. If you know, how to make it, help. 回答1: How I