iphone - How to Display this kind of data into UITableview -


i having nsarray in having following data, using afhttprequestoperation give me result , after doing [listofname addobject:[responsedata valueforkey:name]]; , getting following result , result want display in tableview can understand how becuause new iphone

(         (         "richard conover",         "richard conover",         "kaitlyn matheson",         "andrea wannemaker",         "andrea wannemaker",         test,         james,         test,         gaurav,         sdfsdfs     ) ) 

if nsarray.count return 1 how print separately in tableview

what want set tableview datasource first object in array (which array). this:

nsarray *mytableviewdatasourcearray = [myoriginalarray objectatindex:0]; 

then use mytableviewdatasourcearray datasource methods of tableview.


Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -