我的项目中有以下代码:
id mappedData = [dataWithContentsOfMappedFile: path]
显然,如果
mappedData
为nil,则不会成功。但是,我如何获得有关为何未成功的详细信息?没有dataWithContentsOfMappedFile:withError:
。 最佳答案
使用-dataWithContentsOfFile:options:error:
,在options参数中传递NSDataReadingMapped
常量。
(如果您不针对iOS 4.0 SDK进行编译,则此常量称为NSMappedRead
。)
关于iphone - 如何在[NSData dataWithContentsOfMappedFile:]之后检查错误?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4040364/