我正在尝试使用UTTableView
文件的内容填充Data.plist
。
我需要将其加载到NSMutableArray
。
这是我走了多远:
(查看已加载):
NSString *PlistPath = [[NSBundle mainBundle] pathForResource:@"Data" ofType:@"plist"];
Array = [[NSMutableArray alloc] initWithContentsOfFile:PlistPath];
[Array addObject:[[NSMutableDictionary alloc] initWithObjectsAndKeys:@"Testing 1", @"name", nil]];
当然是CellForRowAtIndexPath
:
cell.textLabel.text = [Array objectAtIndex:indexPath.row];
我在Data.plist
文件(图片)中写了这个:
现在我运行App。我的TableView
仍为空。
感谢您的时间和帮助!
答案 0 :(得分:1)
目前,您的plist根设置为Dictionary
。首先将其更改为array
。
然后使用此代码显示数据:
cell.textLabel.text = [[Array objectAtIndex:indexPath.row] objectForKey:@"name"];