thread1:EXC_BAD_ACCESS(code = 1,address =)ios

时间:2014-02-19 06:40:20

标签: ios nszombie

我在iOS模拟器(6& 7)上遇到过这个问题。尝试重置手机但同样的问题。

加载另一个视图控制器时出现此错误

#   Event Type  ∆ RefCt RefCt   Timestamp   Responsible Library Responsible Caller
0   Malloc  +1  1   00:33.396.540   UIKit   UINibDecoderDecodeObjectForValue
1   Retain  +1  2   00:33.397.009   UIKit   -[UIRuntimeConnection initWithCoder:]
2   Retain  +1  3   00:33.397.047   UIKit   UINibDecoderDecodeObjectForValue
3   Retain  +1  4   00:33.397.064   UIKit   UINibDecoderDecodeObjectForValue
    Retain/Release (2)          00:33.397.537   UIKit   -[UIViewController setView:]
6   Retain  +1  5   00:33.397.548   UIKit   -[UINib instantiateWithOwner:options:]
7   Release -1  4   00:33.397.592   UIKit   -[UINibDecoder finishDecoding]
    Release (2) -2      00:33.397.647   UIKit   -[UINibDecoder finishDecoding]
10  Release -1  1   00:33.397.712   UIKit   -[UIRuntimeConnection dealloc]
11  Release -1  0   00:33.409.138   UIKit   _UIApplicationHandleEvent
12  Zombie      -1  00:35.524.392   UIKit   ___updateViewDependenciesForConstraint_block_invoke_0

尝试过探查器,僵尸得到以下错误但无法进一步处理。有人可以指导下一步吗?

将Objective-C消息发送到地址为UIView的已解除分配的0xbede440对象(僵尸)。

updateViewDependenciesForConstraint_block_invoke_0+0x4d"
+0x3f   movl                2704706(%edi), %ecx
+0x45   movl                %eax, 8(%esp)
+0x49   movl                %ecx, 4(%esp)
+0x4d   movl                %esi, (%esp)
+0x50   calll               "DYLD-STUB$$objc_msgSend"
+0x55   addl                $16, %esp
+0x58   popl                %esi`enter code here`
+0x59   popl                %edi
+0x5a   popl                %ebp
+0x5b   ret  
+0x5c   nopl                (%eax)

示例代码

#pragma mark UITableViewDelegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)tableIndexPath {  

//Logic for validation 
XXXXXXXXXXx

[self performSegueWithIdentifier:@"ADDXXXX" sender:self];
        return;

}

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender{
    if ([[segue identifier] isEqualToString:@"ADDXXXX"]){
        ADDXXXX *myVC = [segue destinationViewController];
        myVC.setXXX
        NSLog(@"INIT %p", self);    
    }
}

1 个答案:

答案 0 :(得分:0)

好的,能够通过在堆栈溢出中引用此线程来解决它。谢谢大家的回复。

[UIView _forgetDependentConstraint:]: message sent to deallocated instance