我已经创建了一个plist并通过直接修改myPlist.plist文件来填充数据。如何从中读取值并在输出中显示它们。 我正在使用分组表,我想填充我之前创建的plist中的单元格数据。 有什么建议吗?
答案 0 :(得分:1)
如果您将内容存储为NSDictionary
,那么您必须从plist中访问它:
NSString *myFile = [[NSBundle mainBundle] pathForResource:@"myList" ofType:@"plist"];
NSMutableDictionary* myDict = [[NSMutableDictionary alloc]initWithContentsOfFile:myFile];
NSLog(@"%@", myDict);
如果已将数据存储为NSArray
,则获取数组中的数据。
要在tableview中显示它,请使用以下代码:
cell.textLabel.text = [myArray objectAtIndex:indexPath.row];
在-tableView:cellForRowAtIndexPath:
方法中编写上述代码。