In the "sample code" in iOS Dev Center there is a TableViewSuite. In the first example SimpleTableView the simulator provides a list of time zones by country. I can not find the list they are pulling from! it appears to be an array but I can't find the actual words that are coming up on the simulator screen in Xcode. I've learned about plists and dictionarys and Arrays and simply can't find where the names are coming from. I found this line:
// Retrieve the array of known time zone names, then sort the array and pass it to the root view controller.
NSArray *timeZones = [NSTimeZone knownTimeZoneNames];
rootViewController.timeZoneNames = [timeZones sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
Again, where is it retrieving the information from? Thanks again.