[iOS]How to get plist?
NSString *path = [[NSBundle mainBundle] pathForResource:@"YOUR_PLIST_FILE" ofType:@"plist"];
NSDictionary *dictionary = [[NSDictionary alloc] initWithContentsOfFile:path];
NSString *path = [[NSBundle mainBundle] pathForResource:@"YOUR_PLIST_FILE" ofType:@"plist"];
NSDictionary *dictionary = [[NSDictionary alloc] initWithContentsOfFile:path];