views:

72

answers:

1

I have an NSArray of strings. I have to place each string in a cell of a table. How to get the string of the array into an NSString ?

+3  A: 

Use -[NSArray objectAtIndex: index] to retrieve an object from an array. Also read the docs.

Ben Gottlieb