从 NSError 返回 NSString

发布于 2024-08-24 22:03:42 字数 161 浏览 9 评论 0 原文

我在 iPhone 应用程序中使用 NSURLRequest 类,调用它的方法返回一个 NSString ,这对于连接正常时非常有用,但问题是我需要将 NSError 转换为 NSString,以便我可以将其返回或对其运行一些 if() 语句。

有什么想法吗? :)

I am using the NSURLRequest class in my iPhone app, and the method that calls it returns an NSString which is great for when the connection goes through ok, but the issue is I need to convert the NSError into an NSString so I can either return it back or run some if() statements on it.

Any ideas? :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

段念尘 2024-08-31 22:03:42

-[NSError localizedDescription]

(此外,从 NSObject 继承的每个 ObjC 对象都实现了 -description ,它返回一个 NSString。)

-[NSError localizedDescription].

(Also, every ObjC object inherited from NSObject implements -description which returns an NSString.)

纵性 2024-08-31 22:03:42

对于刚接触 Objective C(我)的人来说,以下是示例代码,它使“KennyTM”中接受的答案起作用 ->

[self showAlertWithTitle:@"Error:" withMessage:error.localizedDescription];

for folks new to objective c (me), following is example code that makes accepted answer from 'KennyTM' work ->

[self showAlertWithTitle:@"Error:" withMessage:error.localizedDescription];
晒暮凉 2024-08-31 22:03:42

您可以尝试 localizedDescription 方法,该方法返回一个字符串。

更多信息请参见文档

You could try the localizedDescription method, which returns a string.

More in the docs.

删除→记忆 2024-08-31 22:03:42

我发现有三种主要方法 NSError

  • 错误(NSInteger)
  • 域(NSString)
  • userInfo(NSDictionary)

I found that there are three main methods to NSError:

  • error (NSInteger)
  • domain (NSString)
  • userInfo (NSDictionary)
守不住的情 2024-08-31 22:03:42

要获取所有错误详细信息:

NSError * err;
...
[NSString stringWithFormat:@"%@", err];

To get all the error details:

NSError * err;
...
[NSString stringWithFormat:@"%@", err];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文