3

UITableviewを更新しようとしていますが[tableView reloadData];、テーブルを呼び出しても更新されません。変更中にテーブルビューをセル名の上にスクロールした後。ただし、新しい行などを追加するわけではありません。

-(void)update {
        [tableView reloadData];

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

行を追加すると2が返されますが、テーブルが更新されていません。

- (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 に答える