Loading plist into iOS TableView
问题 I have a plist ( images.plist ) with the following contents As you can see, each item has a numerical key, from 0-19. Each item also has two strings (fileName and fileInfo). I'm trying to load all of the fileName's into a TableView. Here's my attempt: RosterMasterViewController.h @interface RosterMasterViewController : UITableViewController @property (nonatomic, strong) NSDictionary *roster; @end RosterMasterViewController.m @implementation RosterMasterViewController @synthesize roster =