如何更改表数据源记录

时间:2012-03-29 07:46:40

标签: objective-c ios cocoa nsdictionary

我的表格视图数据不断变化,因为它从网络获取数据。现在问题是我的表视图在用户滚动视图和从网络到达数据时错过了一些记录。所以我现在想要在用户交互或滚动表视图时如何更改表数据源值。

1 个答案:

答案 0 :(得分:0)

这似乎是重复使用

中的表格视图导致的问题
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;

如果您使用:

static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

你可以尝试:

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:nil];