Hi, everyone,
I am the beginner of the objective C and I want to ask some general question. I have a NSArray * object, which contain the first name and the last name (see below example), and I would like to show the format like a table (as well as the iPhone contacts but only display the content is enough, not the search and group and add, not need to show the ABCDE...Z). The table will appear will the user click a button. What should I do? Thank you very much.
//Example
for(int i=0; i<[arr count]; i++)
NSLog(@"%@", arr objectAtIndex: i);
// result
Tom Chan
John Wong
....