Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我本可以发誓这是 iOS 5 中的一项新功能,但我一直在寻找所有地方,但没有找到任何东西。现在没有更原生的方法来选择多行吗?
谢谢!
假设您实例化的 tableview 具有通常的 tableView 名称:
[tableView setAllowsMultipleSelection:YES]; [tableView setAllowsMultipleSelectionDuringEditing:YES];
将允许您选择多行。
因此,您可以读取所选行的索引路径:
NSArray *paths = [tableView indexPathsForSelectedRows];
文档: