SO已经提出了类似的问题。我的情况略有不同,所以我发布了一个新的问题。
我有一个scrollView作为控制器的主视图。它包含两个子视图:
我已将UITapGestureRecognizer
附加到子滚动视图,以便用户可以从任何文本字段中解除键盘。
UITapGestureRecognizer *tap1 = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tableTouched:)];
[topScrollview addGestureRecognizer:tap1];
tap1.delegate = self;
-(void) tableTouched:(UITapGestureRecognizer *)gesture
{
[portTable endEditing:YES];
portTable.scrollEnabled = YES;
}
-(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:nil];
if (cell == nil)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
}
cell.accessoryType = UITableViewCellAccessoryNone;
cell.textLabel.font = myFont;
cell.textLabel.textColor = [UIColor whiteColor];
switch (indexPath.row) {
case 0:
{
UILabel *tradeLabel = [[UILabel alloc] initWithFrame:CGRectMake(9, 5, 60, 40)];
tradeLabel.text = @"Trade";
tradeLabel.font = myFont;
tradeLabel.textColor = [ColorCodes sharedManager].orangeTextColor;
tradeLabel.backgroundColor = [UIColor clearColor];
[cell.contentView insertSubview:tradeLabel aboveSubview:cell.textLabel];
break;
}
//similar cases
}
return cell;
}
现在如果我继续滚动tableview一段时间,我会在标题中提到的消息崩溃。使用仪器的堆栈跟踪如下:
我无法理解负控制引用计数的原因。我没有设置任何scrollview委托,那么为什么引用计数变为-1?
我已经尝试将手势附加到主滚动视图,tableview本身以及子UIView,但仍然会遇到相同的崩溃。请有人指出我正确的方向..谢谢。
修改
我刚刚得到的另一个堆栈跟踪:
答案 0 :(得分:0)
我成功找到了这个bug。这是因为单元格中的自定义控件。它明确保留和释放非ARC(但包含在ARC项目中)。手势没有问题。删除这些行解决了我的问题。