Arrays are indexed. If you want to access the first object in NSArray, you must do the following:
id someObject = [array objectAtIndex:0];
If you know the type of object, you can do it like this:
NSString *myString = [array objectAtIndex:0];
EDIT: NSDictionary , , - , <dict>, <array> ( ).
NSString *path = [[NSBundle mainBundle] pathForResource:
@"data" ofType:@"plist"];
NSDictionary *dict = [[NSDictionary alloc] initWithContentsOfFile:path];
NSArray *value = [dict valueForKey:@"11231654"];
, , .