objective-c - UITableViewCell 没有接收到指定索引路径的单元格对象
<p><p>我通过指定 indexPath 手动创建 tableViewCell(自定义)。出于某种原因,有时单元格会收到单元格对象,有时它不包含对象。我知道在指定的 indexPath 处存在一个单元格,但更多的原因是代码有时无法从中获取对象。有什么想法吗?</p>
<pre><code>-(BOOL)checkRequiredValues {
NSIndexPath *cellIndexPath;
CheckoutCell *cell;
cellIndexPath = ;
cell = (CheckoutCell *);
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>如果单元格不可见,<code>UITableView</code> 上的 <code>cellForRowAtIndexPath:</code> 返回 <code>nil</code>:</p>
<blockquote>
<p>An object representing a cell of the table or <code>nil</code> if the cell is not visible or indexPath is out of range.</p>
</blockquote>
<p>如果您想一直获取一个单元格,请在您的数据源上调用相同的方法:</p>
<pre><code>cell = (CheckoutCell *)[self.tableView.dataSource
tableView:self.tableView
cellForRowAtIndexPath:cellIndexPath
];
</code></pre></p>
<p style="font-size: 20px;">关于objective-c - UITableViewCell 没有接收到指定索引路径的单元格对象,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/12187137/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/12187137/
</a>
</p>
页:
[1]