我很难设法将单元格的文本标签设置为plist中字符串的值。该应用程序在cell.textlabel.text = [array objectAtIndex:indexPath.row];
崩溃。我很确定其他一切都很好,只是不知道最后一部分。提前谢谢。
这是我的plist:
Root - Array
Item 0 - Dictionary
Key 0 - Array
Item 0 - String - Value 0
Key 1 - Array
Item 1 - String - Value 1
以下是我的tableview数据源方法:
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return _objects.count;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
NSDictionary *dict = [_objects objectAtIndex:section];
return [dict.allValues count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
NSArray *array = [_objects objectAtIndex:indexPath.section];
cell.textLabel.text = [array objectAtIndex:indexPath.row];
return cell;
}
答案 0 :(得分:0)
你_object
的结构不清楚。我假设它引用了plist中的Item 0 - Dictionary
。
numberOfRowsInSection:
中,您将其称为词典:
NSDictionary *dict = [_objects objectAtIndex:section]
在cellForRowAtIndexPath:
中,您将其称为数组:
NSArray *array = [_objects objectAtIndex:indexPath.section];
无论如何,如果我的假设是正确的,那么将cellForRowAtIndexPath
代码更改为以下内容:
NSDictionary *dict = [_objects objectAtIndex:indexPath.section];
NSarray *array = [dict objectForKey:myKey]; //myKey is whatever key you are assigning
cell.textLabel.text = [array objectAtIndex:indexPath.row];
希望这会有所帮助。
修改强>
你可以重组你的plist来实现这一目标。你基本上只是摆脱dictionary
级别..试试这样的事情:
Root - Array
Item 0 - Array <-- this is a section
Item 0 - String - Value 0 <-- this is a cell
Item 1 - Array <-- section
Item 0 - String - Value 1 <-- cell