gpt4 book ai didi

ios - 选择 UITableView 中所有行的更简单方法

转载 作者:行者123 更新时间:2023-12-04 16:47:22 25 4
gpt4 key购买 nike

我希望按照以下代码选择 UITableView 中我正在使用 for 循环的所有行:

- (void)selectAllRows
{
for (int row = 0; row < [self.tableView numberOfRowsInSection:1]; row ++)
{
NSIndexPath *indexPath = [NSIndexPath indexPathForRow:row inSection:1];
[self.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone];
}
}

我在 NSIndexPath 类或 UITableView Controller 上找不到任何直接委托(delegate)来选择 UITableView 单元格上的所有行。这是“n”个复杂度,但是否有更好的方法来选择所有单元格?

最佳答案

这是选择所有单元格的唯一方法。真正的问题是为什么您要选择所有单元格?您是否选择它们来获取 UITableView 委托(delegate)回调?您是出于 UI 目的选择它们吗?

关于ios - 选择 UITableView 中所有行的更简单方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21168393/

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