Posts by Isaque Vieira • 11 points
1 post
-
1
votes2
answers66
viewsA: SWIFT - How to feed a Tableview with information from a Nsarray?
A better solution would be to declare a struct with these attributes struct Pessoa: Codable { var nome: String var idade: Int var altura: Double } And use Jsondecoder var nomes: [Pessoa]…