如何检查 [NSData dataWithContentsOfMappedFile:] 之后的错误?

发布于 2024-09-29 06:39:56 字数 234 浏览 0 评论 0原文

我的项目中有这段代码:

id mappedData = [dataWithContentsOfMappedFile: path]

显然,如果mappedData为nil,则它没有成功。但我怎样才能获得为什么它没有成功的详细信息呢?没有 dataWithContentsOfMappedFile:withError:

I have this code in my project:

id mappedData = [dataWithContentsOfMappedFile: path]

Obviously, if mappedData is nil it didn't succeed. But how can I get details about why it didn't succeed? There's no dataWithContentsOfMappedFile:withError:.

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

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

发布评论

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

评论(1

茶底世界 2024-10-06 06:39:56

使用 -dataWithContentsOfFile:options:error:,在 options 参数中传递 NSDataReadingMapped 常量。

(如果您不是针对 iOS 4.0 SDK 进行编译,则此常量称为 NSMappedRead。)

Use -dataWithContentsOfFile:options:error:, passing the NSDataReadingMapped constant in the options parameter.

(This constant is known as NSMappedRead if you're not compiling against the iOS 4.0 SDK.)

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