解决UITableViewCell中的元素无法触发点击事件

需要在UITableView上面加上手势操作,代码如下:
@interface TestViewController () <UITableViewDataSource, UITableViewDelegate>

@end

@implementation TestViewController {
    UITableView *contentTableView;
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    //初始化点击手势
    UITapGestureRecognizer *tagGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapGesture:)];
    tagGesture.numberOfTapsRequired = 1;
    
    contentTableView = [[UITableView alloc] initWithFrame:self.view.bounds style:UITableViewStylePlain];
    contentTableView.dataSource = self;
    contentTableView.delegate = self;
    //给tableView添加手势操作
    [contentTableView addGestureRecognizer:tagGesture];
}

#pragma mark - UITableViewDataSource

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

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *cellID = @"cellID";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
        UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(50, 50, 50, 30)];
        label.tag = 1;
        [cell.contentView addSubview:label];
    }
    
    UILabel *label = (UILabel *)[cell.contentView viewWithTag:1];
    label.text = [NSString stringWithFormat:@"text_%d", indexPath.row];
    return cell;
}

#pragma mark - UITableViewDelegate

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 100.0f;
}

#pragma mark - UITapGestureRecognizer

- (void)tapGesture:(UITapGestureRecognizer *)gesture {

    //获得当前手势触发的在UITableView中的坐标
    CGPoint location = [gesture locationInView:contentTableView];
    //获得当前坐标对应的indexPath
    NSIndexPath *indexPath = [contentTableView indexPathForRowAtPoint:location];
    
    if (indexPath) {
        //通过indexpath获得对应的Cell
        UITableViewCell *cell = [contentTableView cellForRowAtIndexPath:indexPath];
        //获得添加到cell.contentView中的UILabel
        UILabel *label = nil;
        for (UIView *view in cell.contentView.subviews) {
            if ([view isKindOfClass:[UILabel class]]) {
                label = (UILabel *)view;
                break;
            }
        }
        
        //获得当前手势点击在UILabe中的坐标
        CGPoint p = [gesture locationInView:label];
        //看看手势点的坐标是不是在UILabel中
        if (CGRectContainsPoint(label.frame, p)) {
            NSLog(@"label text : %@", label.text);
        }
    }
    
}
今天重新看代码,想想能不能找到一个更加简单的方法,因为添加在cell.contentView中的UIButton,有些是可以点击,有些却不可以点击,这让人作势的郁闷啊,所以,我就打印看看cell.contentView.size,居然打印出来的结果是 (320, 44) ,原来保持了默认的大小,所以如果你的button在这个默认的大小范围内,就可以点击,如果超出了这个大小的范围就不能够响应事件了,而我的自定义的UITableViewCell的高度为100,所以需要自己设定cell.contentView的大小,这样就不需要添加复杂的手势操作了。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *cellID = @"cellID";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellID];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellID];
        UIButton *btn = [UIButton buttonWithType:UIButtonTypeRoundedRect];
        btn.frame = CGRectMake(100, 20, 50, 30);
        [btn setTitle:@"测试" forState:UIControlStateNormal];
        [btn addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchUpInside];
        //神奇的设置
        cell.contentView.frame = CGRectMake(0, 0, tableView.width, [self tableView:tableView heightForRowAtIndexPath:indexPath]);
        [cell.contentView addSubview:btn];
    }
    return cell;
}

- (void)btnClick:(UIButton *)btn {
    NSLog(@"测试成功");
}


  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值