I have the following array, which was retrieved from JSON results:
<NSCFArray 0x196e3e0>(
{
NameID = 3;
Name = test1;
},
{
NameID = 6;
Name = test2;
}
)
I'd like to go through each object via a tableview and assign its values to labels in a custom tableview cell. How do I access NameID and Name on each iteration? Do I need to create a class with those two properties and assign to it from the array?