//2种方式获取文件
NSBundle *bundle = [NSBundlemainBundle];
//第一种
NSString *path = [[bundle resourcePath] stringByAppendingPathComponent:@"city.plist"];
//第二种
NSString *path = [bundle pathForResource:@"city"ofType:@"plist"];