How can I traverse in the plist to get the value number?
My plist looks like this:
Arrays
Array
Dictionary
Number
Number
Array
...
So in code, I've already started something:
NSString *imagePlist = [[NSBundle mainBundle] pathForResource:@"Imageinfo" ofType:@"plist"];
NSArray *imageArray = [[NSArray alloc] initWithContentsOfFile:imagePlist];
I don't know what's next??? Pls advise. Thanks