1. 程式人生 > >對於libc++abi.dylib: terminate_handler unexpectedly threw an exception 異常處理如何除錯錯誤

對於libc++abi.dylib: terminate_handler unexpectedly threw an exception 異常處理如何除錯錯誤

在程式設計過程中,應正確使用try-catch,在iOS開發過程中,對於libc++abi.dylib: terminate_handler unexpectedly threw an exception libc++abi.dylib: terminate_handler unexpectedly threw an exception  異常,一種方法可以通過打斷點的方法除錯到相應的程式碼,但對於出現的錯誤具體資訊,就需要把異常列印輸出出來,

可以使用

  1. @try{  
  2.     }  
  3.     @catch(NSException *exception) {  
  4.         NSLog(@"異常錯誤是:%@"
    , exception);  
  5.     }  
  6.     @finally {  
  7.     }