Xcode – Create table view section from a data model from a JSON file
I have parsed a JSON file and now I am trying to create a table view with a section. The section is a dictionary inside the data model. import Foundation struct ActionResult: Codable { let data: [ActionElement] } struct ActionElement:…