0

SO已经提出了类似的问题。我的情况略有不同,因此我将其作为新问题发布。

我有一个 scrollView 作为控制器的主视图。它包含两个子视图:

  1. Scrollview 有一个 UIView 作为孩子。
  2. 包含一些数字文本字段的表格视图。

我已将一个附加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 一段时间,我会因标题中提到的消息而崩溃。使用仪器的堆栈跟踪如下:

堆栈跟踪

在此处输入图像描述

我无法理解我的控制器负引用计数的原因。我没有设置任何滚动视图委托,那么为什么引用计数变为-1?

我已经尝试将手势附加到主滚动视图、tableview 本身和子 UIView,但仍然遇到同样的崩溃。请有人指出我正确的方向..谢谢。

编辑

我刚刚得到的另一个堆栈跟踪:

在此处输入图像描述

4

1 回答 1

0

我成功地找到了这个错误。这是因为单元格中的自定义控件。它被明确地保留和释放为非 ARC(但包含在 ARC 项目中)。手势没有引起任何问题。删除这些行解决了我的问题。

于 2013-08-15T07:24:23.397 回答