iOS之NSError

NSError的组成

NSError主要由3部分内容组成:

1.Error Domains:在文件NSError.h中定义,包含:

NSMachErrorDomain
NSPOSIXErrorDomain
NSOSStatusErrorDomain
NSCocoaErrorDomain

2.Error Codes:在以下三个文件中定义

<Foundation/FoundationErrors.h>    Generic Foundation error codes
<AppKit/AppKitErrors.h>            Generic Application Kit error codes
<CoreData/CoreDataErrors.h>        Core Data error codes

3.User Info:这个用户信息字典包含了NSError本地化后的信息

Error description:
    User info key: NSLocalizedDescriptionKey
    Method: localizedDescription (never returns nil)
Failure reason:
    User info key: NSLocalizedFailureReasonErrorKey 
    Method:localizedFailureReason (can return nil)
Recovery suggestion:
    User info key: NSLocalizedRecoverySuggestionErrorKey
    Method: localizedRecoverySuggestion (can return nil)
Recovery options:
    User info key: NSLocalizedRecoveryOptionsErrorKey
    Method: localizedRecoveryOptions (if returns nil, implies a single “OK button)

 

使用和创建NSError

许多Cocoa和Cocoa Touch方法调用时需要传入一个引用的NSError对象,example:

NSError *theError;
BOOL success = [myDoc writeToURL:[self docURL] ofType:@"html" error:&theError];
if (success == NO) {
      // Maybe try to determine cause of error and recover first.
      NSAlert *theAlert = [NSAlert alertWithError:theError];
      [theAlert runModal]; // Ignore return value.
}

显示NSError信息可以直接使用本地化的NSError信息或是更具Error Domain和Error Code来定制Error信息,example:

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
      NSString *titleString = @"Error Loading Page";
      NSString *messageString = [error localizedDescription];
      NSString *moreString = [error localizedFailureReason] ?
                          [error localizedFailureReason] :
    NSLocalizedString(@"Try typing the URL again.", nil); 
    messageString = [NSString stringWithFormat:@"%@. %@", messageString, moreString];
      UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:titleString
                                        message:messageString delegate:self
                                 cancelButtonTitle:@"Cancel" otherButtonTitles:nil];
      [alertView show];
  }

or

- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
      NSString *errorMsg;
      if ([[error domain] isEqualToString:NSURLErrorDomain]) {
          switch ([error code]) {
              case NSURLErrorCannotFindHost:
                  errorMsg = NSLocalizedString(@"Cannot find specified host. Retype URL.", nil);
                  break;
              case NSURLErrorCannotConnectToHost:
                  errorMsg = NSLocalizedString(@"Cannot connect to specified host. Server may be down.", nil);
              break;
              case NSURLErrorNotConnectedToInternet:
                  errorMsg = NSLocalizedString(@"Cannot connect to the internet.Service may not be available.", nil);
                  break;
              default:
                  errorMsg = [error localizedDescription];
                  break;
      }
     } else {
          errorMsg = [error localizedDescription];
      }
      UIAlertView *av = [[UIAlertView alloc] initWithTitle:NSLocalizedString(@"Error Loading Page", nil)
                                   message:errorMsg delegate:self
                             cancelButtonTitle:@"Cancel" otherButtonTitles:nil];
    [av show]; 
}

创建返回自定义的NSError:

- (NSString *)fooFromPath:(NSString *)path error:(NSError **)anError {
      const char *fileRep = [path fileSystemRepresentation];
      int fd = open(fileRep, O_RDWR|O_NONBLOCK, 0);
      if (fd == -1) {
          if (anError != NULL) { NSString *description;
              NSDictionary *uDict;
              int errCode;
              if (errno == ENOENT) {
           description = NSLocalizedString(@"No file or directory at requested location", @"");
                  errCode = MyCustomNoFileError;
              } else if (errno == EIO) {
                  // Continue for each possible POSIX error...
              }
              // Create the underlying error.
              NSError *underlyingError = [[NSError alloc] initWithDomain:NSPOSIXErrorDomain
                                                code:errno userInfo:nil];
              // Create and return the custom domain error.
              NSDictionary *errorDictionary = @{ NSLocalizedDescriptionKey : description,
                                        NSUnderlyingErrorKey : underlyingError, 
                                  NSFilePathErrorKey : path
*anError = [[NSError alloc] initWithDomain:MyCustomErrorDomain                   code:errCode userInfo:errorDictionary];     }     return nil;
}
// ...

 

NSError和NSException的区别

iOS官方文档原文描述如下

Exceptions (represented by NSException objects) are for programming errors, such as an array index that is out of bounds or an invalid method argument. User-level errors (represented by NSError objects) are for runtime errors, such as when a file cannot be found or a string in a certain encoding cannot be read. Conditions giving rise to exceptions are due to programming errors; you should deal with these errors before you ship a product. Runtime errors can always occur, and you should communicate these (via NSError objects) to the user in as much detail as is required.

原文链接:https://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSError_Class/Reference/Reference.html

 

 

 

 

 

 

转载于:https://www.cnblogs.com/mrfriday/p/3235748.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值