gpt4 book ai didi

ios - 为什么 awakeFromNib 从 TableView 中的 Cell 调用两次?

转载 作者:行者123 更新时间:2023-12-01 17:39:24 27 4
gpt4 key购买 nike

我试图理解为什么 awakeFromNib 在我的代码中被调用了两次。我目前有一个 tableview,它有一个特殊的可压缩单元格,该单元格在表格末尾出现一次。当 tableview 滚动到最后的特殊单元格时,第一个 awakeFromNib 被调用(我相信这很好,因为 tableview 正在重用单元格)。但是,每当我点击单元格以展开单元格时,就会再次调用 awakeFromNib。

谁能向我解释为什么 awakeFromNib 被调用了两次?我如何才能让它只被调用一次?

谢谢

编辑**人们要求的代码

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

if (indexPath.section >= (NSInteger)[self.trip.destinations count]) {
GuestCell *cell = (GuestCell*)[tableView dequeueReusableCellWithIdentifier:GuestCellIdentifier forIndexPath:indexPath];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
[cell setupCellForGuests:self.trip.guests];
cell.guestExpanded = NO;
NSLog(@"RETURNING CELL");
return cell;
}

// For all other sections
return [self prepareCardCellForIndexPath:indexPath forHeightCalc:NO];
}


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
if (indexPath.section >= (NSInteger)[self.trip.destinations count]) {
[self.tableView reloadRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
}
}

最佳答案

您正在为展开行的重新加载设置动画。 TableView 通过为相同的索引路径创建另一个单元格,并为从旧单元格到新单元格的转换设置动画来实现这一点。它会创建您的单元格原型(prototype)的第二个实例,因此第二个实例也会收到 awakeFromNib 消息。如果您登录 self,您将看到第二次地址不同。

我不认为您可以避免创建第二个单元格实例(以及第二个 awakeFromNib),除非您摆脱动画。即便如此,我也不确定它是否会重用旧电池。

关于ios - 为什么 awakeFromNib 从 TableView 中的 Cell 调用两次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26223126/

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