读取plist文件数据
//获得文件路径
NSBundle *bundle = [NSBundle mainBundle];
NSURL *plistURL = [bundle URLForResource:@"filename" withExtension:@"plist"];
//得到数据
NSDictionary *dictionary = [NSDictionary dictionaryWithContentsOfURL:plistURL];
//获得文件路径
NSBundle *bundle = [NSBundle mainBundle];
NSURL *plistURL = [bundle URLForResource:@"filename" withExtension:@"plist"];
//得到数据
NSDictionary *dictionary = [NSDictionary dictionaryWithContentsOfURL:plistURL];