0

当我通过一个块加载远程内容时,我通过调用 reloadData 来更新 UITableView。但是,我无法滚动查看这些数据。我认为这是因为我已经声明表中的行数是保存列表内容的 NSArray 变量的长度。但是,当调用它时,列表的计数为零。我会假设通过在 tableView 上调用 reloadData 它会再次重新计算列表大小。也许我在这个过程中错过了一步。谢谢 这是我的代码

 -(void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    dispatch_async(kBgQueue, ^{
        NSData* data = [NSData dataWithContentsOfURL:
                        [NSURL URLWithString: @"MYURL"]];
        [self performSelectorOnMainThread:@selector(fetchedData:)
                               withObject:data waitUntilDone:YES];

    });
}
-(void) fetchedData:(NSData *)responseData
{
    NSError* error;
    id json = [NSJSONSerialization
                          JSONObjectWithData:responseData //1
                          options:kNilOptions
                          error:&error];

    self.dataList = json;
    dispatch_async(dispatch_get_main_queue(), ^(void) {
        [self.tableView reloadData];
    });
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [self.dataList count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"SongCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    // Configure the cell...
    if([self.dataList count] > 0){
        NSDictionary *chartItem = [self.dataList objectAtIndex:indexPath.row];
        NSDictionary *song = [chartItem objectForKey:@"song"];
        cell.textLabel.text = [song objectForKey:@"title"];
    }

    return cell;
}
4

2 回答 2

0

检查您的json对象(因此self.dataList)在异步调用结束时是否不为零。如果是,则[self.dataList count]返回 0。

另外,请确保您正确设置了self.dataList.dataSource.

于 2013-01-07T21:38:55.750 回答
0

现在正在工作。问题的原因是我向 UITableView 添加了平移手势

[self.view addGestureRecognizer:self.slidingViewController.panGesture];

这似乎干扰了在表格上滚动的能力。希望这将有助于将来遇到此问题的任何人。

于 2013-01-07T22:08:59.850 回答