Oi!
Depois de tudo feito, mesmo assim os itens não apareceram, estando associado também ao storyBoard. Na hora de compilar, apesar dele falar que compilou com sucesso, ele volta ao código dando entender que há algum erro no array. Segue o código:
import UIKit
class MealsTableViewController : UITableViewController {
var meals = [Meal(name: "Eggplant Brownie", happiness: 5),
Meal(name: "Zucchini Muffin", happiness: 3),
Meal(name: "Daniela's Cheesecake", happiness: 5)]
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return meals.count
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let row = indexPath.row
let meal = meals[row]
let cell = UITableViewCell(style:UITableViewCellStyle.default, reuseIdentifier: nil)
cell.textLabel!.text = meal.name
return cell
}
}