gpt4 book ai didi

ios - 如何删除tableview中的单元格

转载 作者:行者123 更新时间:2023-11-28 21:54:53 24 4
gpt4 key购买 nike

请帮帮我。我试图删除表格 View 中的单元格。我是 iOS 开发的初学者。

请帮助我。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
int num = [[self.fetchedResultsController sections] count];
return [[self.fetchedResultsController sections] count];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{

id sectionInfo = [[self.fetchedResultsController sections] objectAtIndex:section];
NSInteger numberOfRows = [sectionInfo numberOfObjects];

return numberOfRows;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
id cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];
[self configureCell:cell atIndexPath:indexPath];

return cell;

}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete) {
// Delete the row from the data source
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
}
else if (editingStyle == UITableViewCellEditingStyleInsert) {
// Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
}
}

方法是在我的单元格中连接类 tableviewcell 有更多详细信息。

- (void)configureCell:(id)cell atIndexPath:(NSIndexPath *)indexPath
{
BookDetail *bookDetail = [self.fetchedResultsController objectAtIndexPath:indexPath];

[(storageuser *)cell settingupWithInfo:bookDetail];

}

最佳答案

tableView:commitEditingStyle:forRowAtIndexPath: 中,您必须在调用 deleteRowsAtIndexPaths:withRowAnimation:

关于ios - 如何删除tableview中的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26904126/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com