我正在努力捕获应用中的错误,我正在研究使用NSError
。我对如何使用它以及如何填充它感到有些困惑。
有人可以举例说明我如何填充然后使用NSError
吗?
答案 0 :(得分:466)
嗯,我通常做的是让我的方法可以在运行时错误地引用NSError
指针。如果该方法确实出错了,我可以使用错误数据填充NSError
引用,并从方法返回nil。
示例:
- (id) endWorldHunger:(id)largeAmountsOfMonies error:(NSError**)error {
// begin feeding the world's children...
// it's all going well until....
if (ohNoImOutOfMonies) {
// sad, we can't solve world hunger, but we can let people know what went wrong!
// init dictionary to be used to populate error object
NSMutableDictionary* details = [NSMutableDictionary dictionary];
[details setValue:@"ran out of money" forKey:NSLocalizedDescriptionKey];
// populate the error object with the details
*error = [NSError errorWithDomain:@"world" code:200 userInfo:details];
// we couldn't feed the world's children...return nil..sniffle...sniffle
return nil;
}
// wohoo! We fed the world's children. The world is now in lots of debt. But who cares?
return YES;
}
然后我们可以使用这样的方法。除非方法返回nil:
,否则甚至不用费心去检查错误对象// initialize NSError object
NSError* error = nil;
// try to feed the world
id yayOrNay = [self endWorldHunger:smallAmountsOfMonies error:&error];
if (!yayOrNay) {
// inspect error
NSLog(@"%@", [error localizedDescription]);
}
// otherwise the world has been fed. Wow, your code must rock.
我们能够访问错误localizedDescription
,因为我们为NSLocalizedDescriptionKey
设置了值。
获取更多信息的最佳位置是Apple's documentation。这真的很棒。
Cocoa Is My Girlfriend还有一个很好的简单教程。
答案 1 :(得分:54)
我想根据我最近的实施添加更多建议。我查看了Apple的一些代码,我认为我的代码行为方式大致相同。
上面的帖子已经解释了如何创建NSError对象并返回它们,所以我不打扰那部分。我将尝试建议一种在您自己的应用中集成错误(代码,消息)的好方法。
我建议创建1个标题,它将概述您域中的所有错误(即应用程序,库等)。我当前的标题如下所示:
<强> FSError.h 强>
FOUNDATION_EXPORT NSString *const FSMyAppErrorDomain;
enum {
FSUserNotLoggedInError = 1000,
FSUserLogoutFailedError,
FSProfileParsingFailedError,
FSProfileBadLoginError,
FSFNIDParsingFailedError,
};
<强> FSError.m 强>
#import "FSError.h"
NSString *const FSMyAppErrorDomain = @"com.felis.myapp";
现在,当使用上述值进行错误时,Apple会为您的应用创建一些基本的标准错误消息。可能会出现如下错误:
+ (FSProfileInfo *)profileInfoWithData:(NSData *)data error:(NSError **)error
{
FSProfileInfo *profileInfo = [[FSProfileInfo alloc] init];
if (profileInfo)
{
/* ... lots of parsing code here ... */
if (profileInfo.username == nil)
{
*error = [NSError errorWithDomain:FSMyAppErrorDomain code:FSProfileParsingFailedError userInfo:nil];
return nil;
}
}
return profileInfo;
}
以上代码的标准Apple生成的错误消息(error.localizedDescription
)如下所示:
Error Domain=com.felis.myapp Code=1002 "The operation couldn’t be completed. (com.felis.myapp error 1002.)"
以上内容对开发人员非常有用,因为该消息显示发生错误的域和相应的错误代码。最终用户将不知道错误代码1002
的含义,所以现在我们需要为每个代码实现一些不错的消息。
对于错误消息,我们必须牢记本地化(即使我们没有立即实现本地化消息)。我在当前的项目中使用了以下方法:
1)创建一个包含错误的strings
文件。字符串文件很容易本地化。该文件可能如下所示:
<强> FSError.strings 强>
"1000" = "User not logged in.";
"1001" = "Logout failed.";
"1002" = "Parser failed.";
"1003" = "Incorrect username or password.";
"1004" = "Failed to parse FNID."
2)添加宏以将整数代码转换为本地化错误消息。我在Constants + Macros.h文件中使用了2个宏。为方便起见,我总是在前缀标题(MyApp-Prefix.pch
)中包含此文件。
<强>常量+ Macros.h 强>
// error handling ...
#define FS_ERROR_KEY(code) [NSString stringWithFormat:@"%d", code]
#define FS_ERROR_LOCALIZED_DESCRIPTION(code) NSLocalizedStringFromTable(FS_ERROR_KEY(code), @"FSError", nil)
3)现在很容易根据错误代码显示用户友好的错误消息。一个例子:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error"
message:FS_ERROR_LOCALIZED_DESCRIPTION(error.code)
delegate:nil
cancelButtonTitle:@"OK"
otherButtonTitles:nil];
[alert show];
答案 2 :(得分:37)
伟大的答案Alex。一个潜在的问题是NULL解除引用。 Apple对Creating and Returning NSError objects
的引用...
[details setValue:@"ran out of money" forKey:NSLocalizedDescriptionKey];
if (error != NULL) {
// populate the error object with the details
*error = [NSError errorWithDomain:@"world" code:200 userInfo:details];
}
// we couldn't feed the world's children...return nil..sniffle...sniffle
return nil;
...
答案 3 :(得分:26)
<强>目标C 强>
NSError *err = [NSError errorWithDomain:@"some_domain"
code:100
userInfo:@{
NSLocalizedDescriptionKey:@"Something went wrong"
}];
Swift 3
let error = NSError(domain: "some_domain",
code: 100,
userInfo: [NSLocalizedDescriptionKey: "Something went wrong"])
答案 4 :(得分:9)
答案 5 :(得分:3)
我会尝试总结一下Alex和jlmendezbonini的重要答案,添加一个修改,使所有ARC兼容(到目前为止,由于ARC因为你应该回归而不会抱怨id
,表示&#34;任何对象&#34;,但BOOL
不是对象类型。)
- (BOOL) endWorldHunger:(id)largeAmountsOfMonies error:(NSError**)error {
// begin feeding the world's children...
// it's all going well until....
if (ohNoImOutOfMonies) {
// sad, we can't solve world hunger, but we can let people know what went wrong!
// init dictionary to be used to populate error object
NSMutableDictionary* details = [NSMutableDictionary dictionary];
[details setValue:@"ran out of money" forKey:NSLocalizedDescriptionKey];
// populate the error object with the details
if (error != NULL) {
// populate the error object with the details
*error = [NSError errorWithDomain:@"world" code:200 userInfo:details];
}
// we couldn't feed the world's children...return nil..sniffle...sniffle
return NO;
}
// wohoo! We fed the world's children. The world is now in lots of debt. But who cares?
return YES;
}
现在,我们不会检查方法调用的返回值,而是检查error
是否仍为nil
。如果不是我们有问题。
// initialize NSError object
NSError* error = nil;
// try to feed the world
BOOL success = [self endWorldHunger:smallAmountsOfMonies error:&error];
if (!success) {
// inspect error
NSLog(@"%@", [error localizedDescription]);
}
// otherwise the world has been fed. Wow, your code must rock.
答案 6 :(得分:3)
我见过的另一种设计模式涉及使用块,这在异步运行方法时特别有用。
假设我们定义了以下错误代码:
typedef NS_ENUM(NSInteger, MyErrorCodes) {
MyErrorCodesEmptyString = 500,
MyErrorCodesInvalidURL,
MyErrorCodesUnableToReachHost,
};
您可以定义可能引发错误的方法:
- (void)getContentsOfURL:(NSString *)path success:(void(^)(NSString *html))success failure:(void(^)(NSError *error))failure {
if (path.length == 0) {
if (failure) {
failure([NSError errorWithDomain:@"com.example" code:MyErrorCodesEmptyString userInfo:nil]);
}
return;
}
NSString *htmlContents = @"";
// Exercise for the reader: get the contents at that URL or raise another error.
if (success) {
success(htmlContents);
}
}
然后当你调用它时,你不必担心声明NSError对象(代码完成会为你做),或者检查返回值。你可以只提供两个块:一个在有异常时被调用,另一个在成功时被调用:
[self getContentsOfURL:@"http://google.com" success:^(NSString *html) {
NSLog(@"Contents: %@", html);
} failure:^(NSError *error) {
NSLog(@"Failed to get contents: %@", error);
if (error.code == MyErrorCodesEmptyString) { // make sure to check the domain too
NSLog(@"You must provide a non-empty string");
}
}];
答案 7 :(得分:0)
嗯,这有点不合适范围但是如果你没有NSError选项,你总是可以显示低级错误:
NSLog(@"Error = %@ ",[NSString stringWithUTF8String:strerror(errno)]);
答案 8 :(得分:0)
extension NSError {
static func defaultError() -> NSError {
return NSError(domain: "com.app.error.domain", code: 0, userInfo: [NSLocalizedDescriptionKey: "Something went wrong."])
}
}
当我没有有效的错误对象时,可以使用NSError.defaultError()
。
let error = NSError.defaultError()
print(error.localizedDescription) //Something went wrong.