How do I add UITableView
in UITableViewCell
, the UITableView
in each UITableViewCell
is with different data?
How to show this json in UITableView:
"DiviDeta": [
{
"Id": 12453,
"Nombre": "BATIDO",
"Precio": 1800,
"Sabores": [
{
"Id": 564,
"Nombre": "FEIJOA"
},
{
"Id": 565,
"Nombre": "GUANABANA"
},
{
"Id": 562,
"Nombre": "LULO"
},
{
"Id": 561,
"Nombre": "MANGO"
},
{
"Id": 566,
"Nombre": "MARACUYA"
},
{
"Id": 563,
"Nombre": "MORA"
}
]
}