gpt4 book ai didi

iphone - 选择 UITableView 中的所有单元格,甚至是 iOS 中不可见的单元格

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:47:14 26 4
gpt4 key购买 nike

我有一个方法 selectAll 来选择我的 UITableView 中的所有单元格。此方法检查复选框 (UIButton)。它只对 "visible" 单元格有效,但对 "invisible" 单元格无效!

这里是我的方法:

- (IBAction)selectAll:(id)sender {

for (NSInteger s = 0; s < self.tableView.numberOfSections; s++) {
for (NSInteger r = 0; r < [self.tableView numberOfRowsInSection:s]; r++) {

CustomCell *cell = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:r inSection:s]];

if(!cell.checkbox.selected){
cell.checkbox.selected = !cell.checkbox.selected;
cell.account.checked = cell.checkbox.selected;
}

}
}
}

最佳答案

来自文档:

cellForRowAtIndexPath:

返回值:

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

您可以创建一个数组,其中包含用于选中或未选中的 bool 值列表,并在单元格可见时询问它。

关于iphone - 选择 UITableView 中的所有单元格,甚至是 iOS 中不可见的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15543324/

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