gpt4 book ai didi

iphone - iOS SDK : How to get a cell in a table view that is not visible?

转载 作者:技术小花猫 更新时间:2023-10-29 11:11:56 25 4
gpt4 key购买 nike

如何获取当前在表格中不可见的 indexPath 的单元格? (单元格超出范围)

获取手机的代码:

NSString *name = [[(ELCTextfieldCell *)[tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]] rightTextField] text];

-cellForRowAtIndexPath... 返回 nil,因为所需 indexPath 处的单元格超出范围。那么如何获得正确的单元格而不是 nil?

最佳答案

UITableView 只保留可见的单元格。如果您需要一个不可见的,则必须调用 UITableView dataSourcetableView:cellForRowAtIndexPath:。所以,如果 self 是 dataSource 的类:

UITableViewCell * cell = [self tableView:table cellForRowAtIndexPath:indexPath];

关于iphone - iOS SDK : How to get a cell in a table view that is not visible?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6484029/

25 4 0