iOS 5 不包含更原生地选择和跟踪多个 UITableView 单元格的功能吗?

发布于 2024-12-16 12:26:00 字数 78 浏览 1 评论 0 原文

我可以发誓这是 iOS 5 中的一个新功能,但我找遍了所有地方,但没有找到任何东西。现在没有更原生的方法来选择多行吗?

谢谢!

I could have sworn this was a new feature in iOS 5, but I have been looking all over the place and not finding anything. Isn't there a more native approach to selecting multiple rows now?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长途伴 2024-12-23 12:26:00

假设您实例化的 tableview 具有 tableView 的常用名称:

[tableView setAllowsMultipleSelection:YES];
[tableView setAllowsMultipleSelectionDuringEditing:YES];

将允许您选择多于一行。

您可以这样读取所选行的索引路径:

NSArray *paths = [tableView indexPathsForSelectedRows];

文档:

Assuming your instantiated tableview has the usual name of tableView:

[tableView setAllowsMultipleSelection:YES];
[tableView setAllowsMultipleSelectionDuringEditing:YES];

Will allow you to select more than one row.

You can read the index paths of your selected rows thusly:

NSArray *paths = [tableView indexPathsForSelectedRows];

Documentation:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文