So I\'ve searched, and read and have done this successfully before, but am running into a problem with this one.
I have a plist that is an array of strings. I get n
PLists are dictionaries at their heart (notice the tag). Read the file into an NSDictionary, then ask the dictionary for the array using objectforKey: method and the Root key.
objectforKey:
Root
NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:plistPath]; _brands = [dict objectForKey:@"Root"];