13

这是我为 iOS 7 更新应用程序以来一直遇到的一个新问题。每次在设备或模拟器上启动应用程序时,我都会收到此错误代码

RecipeDetailViewController scrollViewDidScroll:]: 消息发送到释放的实例 0x15746c40 并且它崩溃了。

我启用了 NSZombie,这就是它给我的代码。在它给出 exc_bad_access 代码之前。

这是我的 ScrollViewDidSCroll 代码

- (void)scrollViewDidScroll:(UIScrollView *)scrollView{


    // Depending on how far the user scrolled, set the new offset.
    // Divide by a hundred so we have a sane value. You could adjust this
    // for different effects.
    // The larger you number divide by, the slower the shadow will change

    float shadowOffset = (scrollView.contentOffset.y/1);

    // Make sure that the offset doesn't exceed 3 or drop below 0.5
    shadowOffset = MIN(MAX(shadowOffset, 0), 0.6);

    //Ensure that the shadow radius is between 1 and 3
    float shadowRadius = MIN(MAX(shadowOffset, 0), 0.6);



    //apply the offset and radius
    self.navigationController.navigationBar.layer.shadowOffset = CGSizeMake(0, shadowOffset);
    self.navigationController.navigationBar.layer.shadowRadius = shadowRadius;
    self.navigationController.navigationBar.layer.shadowColor = [UIColor blackColor].CGColor;
    self.navigationController.navigationBar.layer.shadowOpacity = 0.2;
}
4

3 回答 3

23

另一个(不优雅,imo)解决方案是在 dealloc 上将表的委托设置为 nil:

- (void)dealloc {
    [_tableView setDelegate:nil];
}

似乎是一个错误,但我不能保证。我仍在为此寻找合理的解释。

注意:这可能适用于任何 UIScrollView 子类,而不仅仅是 UITableView。

于 2013-09-25T17:52:16.363 回答
7

我正面临着确切的情况。我启用了 NSZombie,在 ios7 中给了我完全相同的错误。

viewDidLoad

[self setEdgesForExtendedLayout:UIRectEdgeNone];

解决了我的崩溃。您也可以尝试从情节提要中取消选择Extended Edges>> Under top bars

在这里查看答案https://stackoverflow.com/a/18892358/1378447

注意为什么在dealloc之后调用'scrollViewDidScroll'委托方法对我来说仍然是一个谜。

于 2013-09-19T11:35:03.453 回答
1

或者如果您观看表格视图滚动

- (void)viewWillDisappear:(BOOL)animated
{
    _table.delegate = nil;
}

无论如何,在 dealloc 上调用通知或类似的东西很奇怪 在此处输入图像描述

于 2014-10-28T11:24:59.033 回答