Whenever I want to get data from a plist file I use the following code:
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"FILE_NAME" ofType:@"plist"];
NSDictionary *plistData = [NSDictionary dictionaryWithContentsOfFile:filePath];
But now I'm trying to read in data from the Info plist, and filePath is nil. Is there a different way to get data from the Info plist?