tags:

views:

15

answers:

1

hi all,

i hv an array

parsed from xml which looks like this

de> <0>Merkel <1>AppleIphone <2>Sag ich nicht <3>youporn.com <4>ICQ Service <5>Sozialamt <6>Liebesengel <7>Hartz 4

i am able to set this list into table view's cell,

but the problem is i am not able to break each entry for each cell..evrything is coming up in a ssingle row, how can i get each entry in each row?

regards shishir

A: 

If your array is setup correctly (for each index a different string), you should be easily be able to display each string in a cell by doing this:

In your default tableView cellForRowAtIndexPath delegate method

set your cell.textLabel.text = [yourArray objectAtIndexPath:[indexPath.row]];

hecta