gpt4 book ai didi

ios - 获取 UITableView 的取消选择的 indexPaths 数组

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

很容易通过调用获取 UITableView 对象的选定行的数组

[tableView indexPathsForSelectedRows];

有什么方法可以让我的 tableView 的取消选择行倒排?

最佳答案

NSMutableArray *unselectedIndexPaths = [NSMutableArray array];

NSInteger sectionCount = self.tableView.numberOfSections;

for (int i = 0; i < sectionCount; i++) {
NSInteger rowCount = [self.tableView numberOfRowsInSection:i];

for (int j = 0; j < rowCount; j++) {
[unselectedIndexPaths addObject:[NSIndexPath indexPathForRow:j inSection:i]];
}
}

[unselectedIndexPaths removeObjectsInArray:self.tableView.indexPathsForSelectedRows];

关于ios - 获取 UITableView 的取消选择的 indexPaths 数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21409159/

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