gpt4 book ai didi

ios - 应用程序在 UItableCellSection 长按时崩溃

转载 作者:可可西里 更新时间:2023-11-01 05:53:03 25 4
gpt4 key购买 nike

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
static NSString *simpleTableIdentifier = @"cell";

simpleCell = [self.dashboardListView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

if (simpleCell == nil) {

simpleCell = [[SimpleTableCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
simpleCell.selectionStyle = UITableViewCellSelectionStyleNone;

}

///tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(sectionTapped)];
///[simpleCell.contentView addGestureRecognizer:tap];

UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setFrame:simpleCell.frame];
[button addTarget:self action:@selector(sectionTapped) forControlEvents:UIControlEventTouchUpInside];
[button setBackgroundColor:[UIColor clearColor]];
[simpleCell.contentView addSubview:button];

NSDictionary *dict = [cellnames objectAtIndex:section];

simpleCell.cellName.text = (NSString *)[dict valueForKey:@"cellname"];
simpleCell.count.text = [[countArray objectAtIndex:section]stringValue];


return simpleCell;

}

以上代码运行良好。

问题是:- 当我长按 tableView 上的 simpleCell 时它崩溃了。

我正在获取崩溃日志

*** -[SimpleTableCell hash]: message sent to deallocated instance 0x7f86dc0b2420`

非常感谢任何建议。

谢谢,

最佳答案

你可能想试试

cell.contentView.userInteractionEnabled = NO;有同样的问题。为我解决了禁用 userInteraction 问题。

关于ios - 应用程序在 UItableCellSection 长按时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27622290/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com