How to add objects from json data to nsmutable array?

58 views Asked by At

I want to add array object from json data, now I can show my array elements on uitableview header but I want to show with json data. I never worked using json so please help me.

Adding my json and codes below...

MY CODEJSON

Thanks in advance.

1

There are 1 answers

3
Vikas Rajput On

Do this where Your response is Coming

 //Sucess Response
 self.arrHeader=[ResponseObject valueForKey:@"Data" ];
_tblCatgori.delegate=self;
_tblCatgori.dataSource=self;
[_tblCatgori reloadData];