UIButton没有关注uitableviewcell

时间:2013-11-27 09:43:54

标签: ios objective-c uitableview uibutton

我有自定义单元格创建了不同的按钮,按钮总是正确调用他们的操作,但我的问题是,如果我快速点击按钮,它不会突出显示,但正如我之前所说的那样调用其动作。我需要慢慢点击几秒钟(1-2秒)才能看到突出显示的状态。我想这可能是因为首先它是关注tableview的scrollview,但我不知道如何解决这个问题。

请帮忙!

1 个答案:

答案 0 :(得分:0)

尝试此代码:使单元格选择类型为无

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
        {
            static NSString *CellIdentifier = @"Cell";

            UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

            if (cell == nil) 
            {
                cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
            }

            // Configure the cell...

             cell.selectionStyle = UITableViewCellSelectionStyleNone;

            return cell;
        }