iOS TableView 编程指导(五)-管理cell的选中

当用户点击tableView中的一个cell时, 你的App需要响应用户的动作, 这个响应可能是新展示一个TableView, cell中的复选框被选中等等一些动作, 接下就TableView的选中的响应内容进行讲解.

tableView中的cell选中事件


在处理表格视图中的单元格选择时,要记住一些人机界面准则(human-interface guidelines):

  • 你不要使用cell的选中来指示状态, 你可以使用cell中的check marks(选择标记, 比如复选框)或accessory view来展示一个状态
  • 当用户选择一个cell时, 你应该取消上一次cell的选中(deselect, 通过调用deselectRowAtIndexPath:animated:方法), 另外执行一个动作, 比如显示一个detail view.
  • 如果选中的动作是往navigation controller的栈中push一个新的viewController, 当view controller被pop off(出栈)时, 应该deselect你选中的cell(动画展示).

你可以通过TableView的属性allowsSelectionDuringEditing控制TableView在编辑模式时是否可选择cell, 另外从iOS 3.0开始, 可以通过allowsSelection属性来控制非编辑模式下cell是否可选.

响应cell的选中事件


用户点击tableView中的某一行代表用户想选中该行代表的选项或者想进一步探查该行下面隐藏的详细信息. 为了响应用户的动作, 你的APP需要作如下事情:

  • 显示数据模型层次结构(data-model hierarchy)中的下一级
  • 显示数据模型层次中某一项的详细信息
  • 显示一个checkmark, 表示该项被用户选择了
  • 如果touch发生在cell中的某个控件上, 那么该touch事件的响应可能由那个控件负责.

tableView通过delegate的tableView:didSelectRowAtIndexPath:方法来处理点击事件的响应. 代码5-1展示这一方法的实现.
代码清单5-1 响应cell的选中

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
     [tableView deselectRowAtIndexPath:indexPath animated:NO];//首先是deselect该行
     BATTrailsViewController *trailsController = [[BATTrailsViewController alloc] initWithStyle:UITableViewStylePlain];
     trailsController.selectedRegion = [regions objectAtIndex:indexPath.row];
     [[self navigationController] pushViewController:trailsController animated:YES];
}

如果你的cell中包含一个disclosure control作为accessory view, 那么当用户点击该control时, delegate会收到tableView:accessoryButtonTappedForRowWithIndexPath:消息, 而不是tableView:didSelectRowAtIndexPath:消息.

accessory是可以自定义的, 所以accessoryView是一个switch, slider等control. 代码5-2展示了用一个UISwitch对象作为accessoryView场景.
代码清单5-2 将switch设置为accessoryView并响应其动作消息

- (UITableViewCell *)tableView:(UITableView *)tv cellForRowAtIndexPath:(NSIndexPath *)indexPath {
       UITableViewCell *cell = [tv dequeueReusableCellWithIdentifier:@"CellWithSwitch"];
        if (cell == nil) {
            cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"CellWithSwitch"];
            cell.selectionStyle = UITableViewCellSelectionStyleNone;
            cell.textLabel.font = [UIFont systemFontOfSize:14];
        }
        UISwitch *switchObj = [[UISwitch alloc] initWithFrame:CGRectMake(1.0, 1.0, 20.0, 20.0)];
        switchObj.on = YES;
        [switchObj addTarget:self action:@selector(toggleSoundEffects:) forControlEvents:(UIControlEventValueChanged | UIControlEventTouchDragInside)];
        cell.accessoryView = switchObj;
 
        cell.textLabel.text = @"Sound Effects";
        return cell;
}
 
- (void)toggleSoundEffects:(id)sender {
    [self.soundEffectsOn = [(UISwitch *)sender isOn];
    [self reset];
}

选择管理对于选择列表也是很重要的。选择列表有两种:

  1. 排他性列表, 只有一行可选中
  2. 复选列表, 可以多行选中

代码5-3展示对于一个排他性列表的选中管理. 首先是deselect当前cell, 如果你选中的是同一行则直接返回; 另外将新选中的行的accessory的type设置checkmark, 并将旧选中的cell的accessory的type设置none.
代码清单5-3 排他性列表的选中管理

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
 
    [tableView deselectRowAtIndexPath:indexPath animated:NO];
    NSInteger catIndex = [taskCategories indexOfObject:self.currentCategory];
    if (catIndex == indexPath.row) {
        return;
    }
    NSIndexPath *oldIndexPath = [NSIndexPath indexPathForRow:catIndex inSection:0];
 
    UITableViewCell *newCell = [tableView cellForRowAtIndexPath:indexPath];
    if (newCell.accessoryType == UITableViewCellAccessoryNone) {
        newCell.accessoryType = UITableViewCellAccessoryCheckmark;
        self.currentCategory = [taskCategories objectAtIndex:indexPath.row];
    }
 
    UITableViewCell *oldCell = [tableView cellForRowAtIndexPath:oldIndexPath];
    if (oldCell.accessoryType == UITableViewCellAccessoryCheckmark) {
        oldCell.accessoryType = UITableViewCellAccessoryNone;
    }
}

代码5-4展示如果管理多选列表的选中实现.
代码清单5-4 多选列表的实现

- (void)tableView:(UITableView *)theTableView
          didSelectRowAtIndexPath:(NSIndexPath *)newIndexPath {
 
    [theTableView deselectRowAtIndexPath:[theTableView indexPathForSelectedRow] animated:NO];
    UITableViewCell *cell = [theTableView cellForRowAtIndexPath:newIndexPath];
    if (cell.accessoryType == UITableViewCellAccessoryNone) {
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
        // Reflect selection in data model
    } else if (cell.accessoryType == UITableViewCellAccessoryCheckmark) {
        cell.accessoryType = UITableViewCellAccessoryNone;
        // Reflect deselection in data model
    }
}

注意:在tableView:didSelectRowAtIndexPath:中总是需要deselect当前选中行

代码控制cell的选择和滚动


有时行的选中源于APP本身, 而不是表视图中的tap. 可能是因为外部引起数据模型导致的, 比如, 用户添加一个新的联系人, 然后返回联系人列表, APP希望将此列表滚动到最近添加的联系人. 为了这种情况, 你可以使用tableView的selectRowAtIndexPath:animated:scrollPosition:方法或者scrollToNearestSelectedRowAtScrollPosition:animated:(之前tableView中有选中的行)方法. 你也可能会调用scrollToRowAtIndexPath:atScrollPosition:animated:使tableView滚动到特定的位置.

代码5-5展示使用selectRowAtIndexPath:animated:scrollPosition来滚动TableView到特定的行
代码清单5-5 代码控制行的选中

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)newIndexPath {
    NSIndexPath *scrollIndexPath;
    if (newIndexPath.row + 20 < [timeZoneNames count]) {
        scrollIndexPath = [NSIndexPath indexPathForRow:newIndexPath.row+20 inSection:newIndexPath.section];
    } else {
        scrollIndexPath = [NSIndexPath indexPathForRow:newIndexPath.row-20 inSection:newIndexPath.section];
    }
    [theTableView selectRowAtIndexPath:scrollIndexPath animated:YES
                        scrollPosition:UITableViewScrollPositionMiddle];
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,128评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,316评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,737评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,283评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,384评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,458评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,467评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,251评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,688评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,980评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,155评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,818评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,492评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,142评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,382评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,020评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,044评论 2 352

推荐阅读更多精彩内容