Upvote:2

Aprove answer
+(NSArray *)plistToArray {
    NSBundle *bundle = [NSBundle mainBundle];
    NSString *path = [bundle pathForResource:@"MyPListFile" ofType:@"plist"];
    NSDictionary *dict= [[NSDictionary alloc] initWithContentsOfFile:path];


    NSArray *retArr = [NSArray arrayWithArray:[dictobjectForKey:@"MyPListRootEntry"]];
    return retArr;
}

Credit Goes to: stackoverflow.com

Related question with same questions but different answers