tableview cell内容变了 会自动更新 代码示例
时间: 2023-08-24 10:04:03 浏览: 257
好的,这里给你一个简单的示例代码,用于演示 UITableView 在数据源发生变化时如何自动更新:
```
// 定义一个数组用于存储数据
NSMutableArray *dataArray = [NSMutableArray arrayWithObjects:@"第一行", @"第二行", @"第三行", nil];
// 实现 UITableView 的数据源方法
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [dataArray count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *cellIdentifier = @"cellIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
}
// 获取对应的数据
NSString *data = [dataArray objectAtIndex:indexPath.row];
// 更新 UITableViewCell 的内容
cell.textLabel.text = data;
return cell;
}
// 在某个操作后更新数据源并刷新 UITableView
[dataArray removeObjectAtIndex:1];
[tableView reloadData];
```
在上面的代码中,我们首先定义了一个数组 `dataArray`,用于存储数据。然后在 UITableView 的数据源方法中,我们根据当前的 indexPath 来获取对应的数据,并使用该数据来更新 UITableViewCell 的内容。
最后,在某个操作(例如删除第二行数据)后,我们需要更新数据源 `dataArray`,并调用 UITableView 的 `reloadData` 方法来刷新 UITableView。这样,UITableView 就会自动更新显示的内容,以反映最新的数据。
阅读全文