Can swift Ios sort complexly in tableView?
I have two arrays: var sections: [SectionContent] = [] var cells: [CellContent] = [] Of those two arrays, one is nested inside the other one: struct SectionContent { let sectionDate: Date let sectionContent: [CellContent] } struct CellContent { let cellDate:…