gpt4 book ai didi

iphone - 如何在我的 iPhone 应用程序中使用 NSError?

转载 作者:IT老高 更新时间:2023-10-28 12:14:40 24 4
gpt4 key购买 nike

我正在处理我的应用程序中的错误,我正在研究使用 NSError。我对如何使用它以及如何填充它感到有些困惑。

有人可以提供一个关于我如何填充然后使用 NSError 的示例吗?

最佳答案

嗯,我通常做的是让我的方法在运行时出错,引用 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 上还有一个不错的简单教程.

关于iphone - 如何在我的 iPhone 应用程序中使用 NSError?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4654653/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com