在ios開發中使用 try 和 catch 來捕獲錯誤。

來源:互聯網
上載者:User

ios中很少用到try 和catch

簡單的來說,Apple雖然同時提供了錯誤處理(NSError)和異常處理(exception)兩種機制,但是Apple更加提倡開發人員使用NSError來處理常式運行中可恢複的錯誤。而異常被推薦用來處理不可恢複的錯誤。


原因有幾個,在非gc情況下,exception容易造成記憶體管理問題(文檔有描述即使是arc下,也不是安全的);exception使用block造成額外的開銷,效率較低等等,另外這也的確是Cocoa開發人員的習慣。

1,拋出錯誤的代碼

    //如果返回的報文是錯誤資訊,則拋出錯誤         if([outParams count] <= 0)         {             [NSException raise:@"WebService error" format:@"%@", returnJson4SOAP];         }  

2,在調用中捕獲錯誤碼

    //從soap 資訊中解析出CusotmerDetail 對象          @try          {              customerDetail = [[[SoapRtnJsonParser alloc] init] parse2CustomerDtail:[returnSoapXML dataUsingEncoding:NSUTF8StringEncoding]];          }@catch (NSException * e) {              NSLog(@"Exception: %@", e);              UIAlertView * alert =              [[UIAlertView alloc]               initWithTitle:@"錯誤"               message: [[NSString alloc] initWithFormat:@"%@",e]               delegate:self               cancelButtonTitle:nil               otherButtonTitles:@"OK", nil];               [alert show];              [alert release];              return;          }  


聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.