3

我正在尝试更新我的 UITableview,但是当我调用[tableView reloadData];表格时,表格没有更新,在我滚动单元格名称上方的表格视图后,同时被更改。但它不是添加新行或类似的东西。

-(void)update {
        [tableView reloadData];

    NSLog(@" %i", [tableData count]);
}

当我添加一行返回 2 但表没有更新时,它返回 1 的 nslog。

- (void) refresh:(id)sender {  


    NSString *jsonString = [NSString 
                            stringWithContentsOfURL:[NSURL URLWithString:xmlDataUrl] 
                            encoding:NSUTF8StringEncoding
                            error:nil];


    SBJSON *parser = [[SBJSON alloc] init];
    NSDictionary *results = [parser objectWithString:jsonString error:nil];

    parser = nil;

    [self setTableData:[results objectForKey:@"items"]];
        [self performSelector:@selector(update) withObject:nil afterDelay:.2];


}

.

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

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    if (cell == nil) {
        // Change UITableViewCellStyle
        cell = [[UITableViewCell alloc] 
                initWithStyle:UITableViewCellStyleSubtitle 
                reuseIdentifier:CellIdentifier];
    }


    NSDictionary *item = [tableData objectAtIndex:[indexPath row]];
    [[cell textLabel] setText:[item objectForKey:@"title"]];
    [[cell detailTextLabel] setText:[item objectForKey:@"descript"]];
    [[cell detailTextLabel] setText:[item objectForKey:@"detail"]];

.

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


- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

        return [tableData count];
}
4

1 回答 1

5

每次我看到这个问题都是因为UITableView没有连接插座。结果,reloadData呼叫被发送到nil。在这种情况下,这几乎可以肯定是错误的。这可以通过简单的日志语句轻松测试。

-(void)update {
    NSLog(@"tableView is '%@'",tableView);
    [tableView reloadData];
    NSLog(@" %i", [tableData count]);
}

您很可能会tableView is (null)在控制台中看到。

旁注:表格视图完全填充的事实表明dataSourcedelegate插座已连接。

于 2012-04-17T23:10:27.627 回答