Boa noite,
Meu app não copilou com o método UITableViewCellStyle, ele forçou a utilizar o UITableViewCell.CellStyle e copilou com sucesso.
Queria saber se tem alguma diferença?
Meu código ficou assim:
import UIKit
class ViewController: UITableViewController {
let meals = ["eggplant brownie", "zucchini muffin", "frango agridoce", "guilherme´s sundubu"]
override func viewDidLoad() {
super.viewDidLoad()
print("tela carregada com sucesso")
}
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: UITableViewCell.CellStyle.default, reuseIdentifier: nil)
cell.textLabel!.text = meal
return cell
}
}
Obrigado.