I want to display array objects from one view controller to another view controller’s array.
In first view controller i have parsed the xml according to that i have 12 rows in that view controller means i have 4 record with 3 different values for u r reference plz see image


but now problem is that i have 4 object in array and i have 12 rows in second view so how can i display the out put
You should use the
numberOfRowsInSectionto return the correct number of rows. Say your array is namedlistOfTeams, then that method should use:return [listOfTeams count];.If that’s not an option, add those 4 objects in an array, and add another 8
nil‘s with them.This is not recommended, fix your table methods instead.