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.
我正在使用带有复选标记的 UITableView,并且我想设置一个标签计数,以显示在表格视图中选中了多少项目。例如,如果表包含 18 个项目和 2 个检查,则显示 2/18。谁能帮我写代码?
假设这意味着将选择这些单元格,您可以尝试以下操作:
NSArray *array = [[NSArray alloc] initWithArray:tableView.indexPathsForSelectedRows]; myCount = [array count];
或者,您可以保留一个整数的运行计数,并在每次选择或取消选择单元格时添加或减去它。