然而,我有一份直观,即显示其中大约200个浏览点的数据。 将在几个章节中显示数据,这些章节将在适当时候确定。 我能够拿到一些章节,但我无法按正确的顺序为某个章节显示数据。 我有一系列的字典数据。
我的法典:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
TeraGoAppDelegate *appDel = (TeraGoAppDelegate *)[[UIApplication sharedApplication] delegate];
UITableViewCell *cell = nil;
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil] autorelease];
cell.textLabel.text = [(NSMutableDictionary *)[appDel.arrEqp objectAtIndex:countEqpIndex] objectForKey:@"EQP_NAME"];
cell.textLabel.font = [UIFont fontWithName:@"Arial" size:14];
if(![[(NSMutableDictionary *)[appDel.arrEqp objectAtIndex:indexPath.row] objectForKey:@"select"] isEqualToString:@"0"])
{
cell.accessoryType = UITableViewCellAccessoryCheckmark;
iii
else
cell.accessoryType = UITableViewCellAccessoryNone;
iii
// Set up the cell...
return cell;
iii
我正在尝试使用指数Path.row,但其数值从每节0起开始,因为Istnt有阵列索引以获取数据,因此无法从阵列中获得数据。 如何获得需要展示的阵列指数?
<>Update:
[dictComp setObject:arrEqps forKey:CompName];
[arrCompEqp addObject:dictComp];
[arrEqps removeAllObjects];
我在使用上述代码在表格中添加数据,但一旦从表面上删除物体,也从表面上可见一斑。 为什么不保留数据。