我有一个方法 selectAll 可以选择 UITableView 中的所有单元格。这个方法检查一个复选框(UIButton) 。它仅适用于 "visible" 单元格,但不适用于 "invisible" 单元格!
这是我的方法:
- (IBAction)selectAllid)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;
}
}
}
}
Best Answer-推荐答案 strong>
来自文档:
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/
|