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 ?
1 Answer
Use -[NSArray objectAtIndex: index] to retrieve an object from an array. Also read the docs.
Use -[NSArray objectAtIndex: index] to retrieve an object from an array. Also read the docs.