Hello everyone!
I have a plist that is created like this:
Code:
item 0 array
item 0 string title1
item 1 string img1
item 1 array
item 0 string title2
item 1 string img2
item 2 array
item 0 string title3
item 1 string img3
now I am able to see the entire array by doing this:
NSLog(@"%@", array);
and I can see the two parts of a single section (the title and img) like this:
NSLog(@"%@", [array objectAtIndex:0]);
how can I get one specific part such as only title1?
I'm trying to use this plist to fill out a tableview but only using the titles for the cell names.
I hope this all makes sense,
thanks