Estou seguindo as aulas, mas não consegui entender as especificidades da função tableView:UITableView,cellForRowAt indexPath.
Gostaria de verificar a possibilidade de uma explicação mais detalhada a respeito deste código.
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let row = indexPath.row
let meal = meals[row]
var cell = UITableViewCell(style: UITableViewCellStyle.default, reuseIdentifier: nil)
cell.textLabel!.text = meal
return cell
}
}