cell的选中和取消选中

//数据源协议中有两个方法,在cell被选中或取消时被触发

//didSelect,当你选中某个cell时,就会调用该方法.

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

}

//didDeselect,当取消选中cell时,就会调用改方法.

-(void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath{

}

-------这里需要注意,以上两种方法在tableView处于编辑和非编辑状态时,调用方式不一样.

1.如果处于非编辑模式下(!tableView.isEditing)

当点击cell时,会触发"选中"方法, 当再次点击该cell时还是会触发"选中"方法.

当点击其他cell时,首先触发之前cell"取消选中"方法,然后再触发该cell的"选中"方法

2.如果处于编辑模式下(tableView.isEditing)

如果cell未被选中,点击该cell时,触发"选中"方法.如果cell已经被选中了,点击该触发l"取消选中"方法.

时间: 2024-10-14 01:53:30

cell的选中和取消选中的相关文章

EasyUI带选择框的DataGrid实现点击行"不选中或取消选中"的解决方法。

1 var IsCheckFlag = true; //标示是否是勾选复选框选中行的,true - 是 , false - 否 2 $("#dg").datagrid({ 3 rownumbers:true, 4 url: 'LeadsData.ashx?o=list', 5 method:'get', 6 fit: true, 7 striped:true, 8 pagination: true, 9 fitColumns: true, 10 checkOnSelect: false

MFC CheckBox选中或取消选中

CheckBox控件选中或取消选中时: void CFlapLaneDlg::OnBnClickedAutoPolling() { // TODO: 在此添加控件通知处理程序代码 CButton* pBtn = (CButton*)GetDlgItem(IDC_AUTO_POLLING); int state = pBtn->GetCheck(); if (state == 1) // 选中 { } else // 取消选中 { } }

js 设置多个复选框选中和取消选中

// 设置选中 function setCheckboxClick(obj) { if(obj == null) { $.messager.alert('警告', "请选择要设置选中的项!",'warning'); } // alert(obj.value); var authorityId = obj.value; $.ajax({ type: 'post', url: 'getAuthorityByAuthorityId.action', data: {"authorit

JS 设置复选框的选中与取消选中

// 设置选中 function setCheckboxClick(obj) { if(obj == null) { $.messager.alert('警告', "请选择要设置选中的项!",'warning'); } // alert(obj.value); var authorityId = obj.value; $.ajax({ type: 'post', url: 'getAuthorityByAuthorityId.action', data: {"authorit

EasyUI带选择框的DataGrid实现点击行"不选中或取消选中"的解决方法

var IsCheckFlag = true; //标示是否是勾选复选框选中行的,true - 是 , false - 否  $("#dg").datagrid({      rownumbers:true,      url: 'LeadsData.ashx?o=list',      method:'get',      fit: true,      striped:true,      pagination: true,      fitColumns: true,     c

web前端html实例-点击相文字选中和取消选中checkbox复选框

checkbox复选框大家应该不会陌生,点击此元素可以实现选中或者取消效果. 下面介绍一种更为人性化的措施,点击指定相关内容即可以实现选中和取消选中效果. 代码实例如下: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" />

jQuery中checkbo添加事件,判断是否选中和设置选中与取消选中

判断是否选中 $('#checkbox').prop('checked') 设置选中与不选中状态 $('#checkbox').attr('checked',true) $('#checkbox').attr('checked',false) 添加事件 html <div class="checkbox"> <label><input type="checkbox" class="pull-right"><

jQuery对checkbox选中和取消选中操作

最近做项目发现jQuery对checkbox的全选和非全选操作只有第一次生效,以后就不生效了,不知道是不是jQuery版本库的问题,最终找到了一个解决方案: 把原来的下面这两句: $('input').attr('checked','checked'); $('input').attr('checked',false); 改成下面的: $('input').prop('checked','checked'); $(this).removeAttr("checked"); 欢迎大神们批评

jquery checkbox (选中和取消选中事件on(&quot;change&quot;))做笔记

$("#btn_Company").attr("disabled", "disabled"); $("#agency").on("change", function () {                //点击之后如果变成打钩时触发                if ($(this).attr("checked") == "checked") {