Это модель, которую я создал:
struct Friends: Codable{
var name:String
var position:String
var details:[Detail]
}
struct Detail: Codable{
var detail:String
}
Я хочу детализировать в виде таблицы. Как это сделать?
var data = [Friends]()
TableView:
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return data.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
let data = data[indexPath.row]
let dataDetail = data.dataDetail[indexPath.row]
cell.textLabel?.text = "\(dataDetail)"
return cell
}