2014-02-19 492 views
1

我一直在iOS模擬器上面對這個問題(6 & 7)。嘗試重置手機,但同樣的問題。thread1:EXC_BAD_ACCESS(code = 1,address =)ios

加載另一個視圖控制器

# 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);  
    } 
} 
+0

http://stackoverflow.com/questions/19217233/thread-1-exc-bad-access-code-1-address-0x30000008 – iPatel

+0

提供更多infromation – codercat

+0

iPatel - 上述步驟試圖來到這個殭屍聲明。需要幫助來理解和解決 –

回答

相關問題