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