从.plist文件读取数据结构到NSArray的方法如下:
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"your_plist_file_name" ofType:@"plist"];
NSArray *array = [NSArray arrayWithContentsOfFile:filePath];
其中,your_plist_file_name
是你的.plist文件的文件名,不包括扩展名。
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"your_plist_file_name" ofType:@"plist"];
NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:filePath];
NSArray *array = [dict objectForKey:@"your_key"];
其中,your_key
是你的字典中的键,其对应的值是你要读取的数组。
NSString *filePath = [[NSBundle mainBundle] pathForResource:@"your_plist_file_name" ofType:@"plist"];
NSArray *array = [NSArray arrayWithContentsOfFile:filePath];
这样,你就可以从.plist文件中读取数据结构到NSArray中了。
领取专属 10元无门槛券
手把手带您无忧上云