0

我在 xib 文件中有一个非常简单的 tableview,它的委托和数据源连接到 TestVC。TestVC 很简单:

#import "TestVC.h"

@implementation TestVC

- (UITableViewCell *)tableView:(UITableView *)_tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    static NSString *IDEN = @"IDEN";
    UITableViewCell *cell = [_tableView dequeueReusableCellWithIdentifier:IDEN];
    if (!cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:IDEN];
    }

    cell.textLabel.text = @"test";
    return cell;

}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return 10;

}

- (void)tableView:(UITableView *)_tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexPath {
    NSLog(@"called");
    [_tableView deselectRowAtIndexPath:indexPath animated:YES];
}

@end

当我单击一个单元格时,它不会被取消选择。我什至在那里放了一条日志语句,以查看是否调用了 didDeselectRowAtIndexPath 方法并且确实如此。

我究竟做错了什么?

4

1 回答 1

1

您使用了错误的方法 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

是你需要的

于 2012-08-30T23:05:00.377 回答