我想在UITableview中选择多行,就像苹果在本机报警应用程序中所做的那样(见图
我该怎么做呢?
到目前为止,我看到的所有答案都是旧的(并且说“不能做”),或者涉及到原生邮件应用程序中的多行选择。这种方法不是我想要的,因为您必须首先输入“编辑”-mode。我希望能够立即选择行。
希望有人能帮上忙。
克里斯蒂安
发布于 2011-01-06 15:20:18
在……里面
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
做
if([tableView cellForRowAtIndexPath:indexPath].accessoryType == UITableViewCellAccessoryCheckmark){
[tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryNone;
}else{
[tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;
}
编辑:
您还必须使用映射选中单元格的数组,并且在cellForRowAtIndexPath中,您必须验证是否应该检查accessoryType。
发布于 2011-10-14 03:47:00
我找到的最简单的方法是:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryCheckmark;
}
- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
[tableView cellForRowAtIndexPath:indexPath].accessoryType = UITableViewCellAccessoryNone;
}
您可以通过调用以下命令来查看选择了哪些单元格:
NSArray *selectedCells = [self.tableView indexPathsForSelectedRows];
发布于 2012-07-06 17:42:23
https://stackoverflow.com/questions/4616345
复制相似问题