1

我有一个问题:更新 UITableView 中的数据。我想从服务器响应的 parseXML 中获取新数据,然后它们将新数据更新到 UITableView。**我使用了下面的代码,但它没有在表格视图中显示新数据。我写了一个UpdateArray()函数来检查新数据,然后我比较 2 Array,如果 diff[Array count]然后我打电话[tableview reloadData];

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
    {
        return 1;
    }

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
    {
        return [temp count];

    }

    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        return 90;
    }



      - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
        {

        static NSString *CellIdentifier = @"Cell";

        UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        if (cell == nil)
        {
            cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];


            UILabel *FileNameLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 0, 100, 30)];
            FileNameLabel.backgroundColor = [UIColor clearColor];
            FileNameLabel.font = [UIFont fontWithName:@"Helvetica" size:16];
            FileNameLabel.font = [UIFont boldSystemFontOfSize:16];
            FileNameLabel.textColor = [UIColor blackColor];
            NSLog(@"Reseversed TEMP array %@",temp);
            FileNameLabel.text =[temp objectAtIndex:indexPath.row];
            [cell.contentView addSubview: FileNameLabel];
            [FileNameLabel release];

            UILabel *UploadTimeLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 20, 300, 25)];

            UploadTimeLabel.backgroundColor = [UIColor clearColor];
            UploadTimeLabel.font = [UIFont fontWithName:@"Helvetica" size:14];
            UploadTimeLabel.textColor = [UIColor grayColor];
            UploadTimeLabel.text = [UploadTimeArray objectAtIndex:indexPath.row];
            [cell.contentView addSubview: UploadTimeLabel];
            [UploadTimeLabel release];

            UILabel *CompleteLabel = [[UILabel alloc] initWithFrame:CGRectMake(140, 12, 170, 25)];
            CompleteLabel.backgroundColor = [UIColor clearColor];
            CompleteLabel.font = [UIFont fontWithName:@"Helvetica" size:14];
            CompleteLabel.textColor = [UIColor darkGrayColor];
            CompleteLabel.text =@"Completed";
            CompleteLabel.textAlignment = NSTextAlignmentRight;
            [cell.contentView addSubview: CompleteLabel];
            [CompleteLabel release];
        }
            return cell;
    }

UpdateArray()

 -(void)updateArray{

   while (loop)
   {
        [NSThread sleepForTimeInterval:4.0];

        [FileCompletedArray removeAllObjects];
     // [temp removeAllObjects];
      ....
        AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:afRequest];

        [operation  setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
            NSLog(@"Success");
            NSString * parsexmlinput = [[NSString alloc] initWithData:responseObject encoding:NSUTF8StringEncoding];
            NSLog(@"Response in Loop CompleteView: %@", parsexmlinput); 
           // dispatch_async(dispatch_get_main_queue(), ^{
                [self parseXMLFile:parsexmlinput];

            NSLog(@"File Completed array: %@", FileCompletedArray);
            NSLog(@"File Temp out array: %@", temp);
            NSLog(@"File Completed count: %lu",(unsigned long)[ FileCompletedArray count]);
            NSLog(@"File Temp out count: %lu", (unsigned long)[temp count]);
            // NSLog(@"State: %@", state);

            if([FileCompletedArray count ] != [temp count])
            {
                [temp removeAllObjects];
                temp= [FileCompletedArray mutableCopy];
                [_tableView reloadData];
            }
            else
            {
               NSLog(@"2 array equal");
            }
   //});
        }
      failure:^(AFHTTPRequestOperation *operation, NSError *error) {
                                              NSLog(@"error: %@", error);

                                          }
         ];
        [httpClient enqueueHTTPRequestOperation:operation];
   }
}

你能帮助我吗?提前致谢。

4

3 回答 3

1

我没有看到您调用 reloadData。

编辑:

你必须检查

1-Temp 有对象我的意思是 [temp count] 不返回零。

2-检查两个数组的 if 条件被触发。我的意思是调用重新加载数据。

3-您可以在 cell.contetview addsubview 之后创建一个断点并检查该单元格现在包含什么?

于 2013-07-04T09:00:19.283 回答
0

如果您刷新表格视图,请尝试此行并检查:

[[self mytableview] reloadData];

mytableview 是您在此处提供的 tableview 对象的 obj。

于 2013-07-04T09:49:13.810 回答
0

在你打电话之前

[_tableView reloadRowsAtIndexPaths:[_tableView indexPathsForVisibleRows]
                                 withRowAnimation:UITableViewRowAnimationNone];

你必须打电话

[_tableView beginUpdates];
...
[_tableView endUpdates];

或致电

[_tableView reloadData];
于 2013-07-04T09:03:41.513 回答