I have an array,something like below
MutableArray (
{
"a" = 1;
"b" = "";
"c" = " ";
"imagepath" = "../images/image.png";
"d" = "dummy text";
"e" = 2;
"f" = "dummy text";
"g" = dummy text;
"h" = dummy text;
"i" = "Feb 19, 2010";
},
{
"a" = 2;
"b" = "dummy";
"c" = "dummy";
"imagepath" = "../images/noimage.png";
"d" = "dummy text";
"e" = 3;
"f" = "dummy text";
"g" = dummy text;
"h" = dummy text;
"i" = "Mar 23 , 2010";
})
What exactly i am trying is to get the values separately from the array like
row 1 : Title a,
row 2 : Title b,
row 3 : title c,
i want each values from the array separately.
I have table view, custom cell, with image and labels already created.
for ex Row 1 = data from index 1
row 2= data from index 2
something like that.
I m not sure how to get separates values from the array and put it in table row’s labels.
Kindly suggest,how can i do that.
// Try getting values using KVC
// Paste this in – (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath