gpt4 book ai didi

objective-c - UITableViewCell 未在指定索引路径接收单元格对象

转载 作者:塔克拉玛干 更新时间:2023-11-02 10:13:52 24 4
gpt4 key购买 nike

我通过指定 indexPath 手动创建 tableViewCell(自定义)。由于某种原因,有时单元格会接收单元格对象,有时它不会包含对象。我知道指定的 indexPath 中存在一个单元格,但更多的原因是代码有时无法从中获取对象。有什么想法吗?

-(BOOL)checkRequiredValues {

NSIndexPath *cellIndexPath;
CheckoutCell *cell;

cellIndexPath = [NSIndexPath indexPathForRow:1 inSection:0];
cell = (CheckoutCell *)[self.tableView cellForRowAtIndexPath:cellIndexPath];

}

最佳答案

如果单元格不可见,UITableView 上的 cellForRowAtIndexPath: 返回 nil:

An object representing a cell of the table or nil if the cell is not visible or indexPath is out of range.

如果您想一直获取一个单元格,请在您的数据源上调用相同的方法:

cell = (CheckoutCell *)[self.tableView.dataSource
tableView:self.tableView
cellForRowAtIndexPath:cellIndexPath
];

关于objective-c - UITableViewCell 未在指定索引路径接收单元格对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12187137/

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