簡體   English   中英

線程1:EXC_BAD_ACCESS(代碼= 1,地址=)iOS

[英]thread1:EXC_BAD_ACCESS (code=1,address=) ios

我一直在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消息發送到地址為0xbede440已釋放的UIView對象(僵屍)。

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);    
    }
}

好的,能夠通過在堆棧溢出中引用此線程來解決該問題。 感謝大家的回應。

[UIView _forgetDependentConstraint:]:消息發送到已釋放實例

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM