0

这是我第一次在模拟器之外的 iPad 上测试我的应用程序。我有一些文件的路径是使用以下方法检索的:

  NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
  NSString *documentsDirectory = [paths objectAtIndex:0];

在模拟器中运行时一切正常,但在 iPad 上似乎没有上传文档目录中的文件。如何将所有这些文件上传到 iPad?

4

1 回答 1

1

iOS 设备遵循沙盒环境,因此每个应用程序都有自己的 Documents 文件夹。要将文件保存在文档文件夹中,您可以尝试以下操作:

 //This will provide you path for the document folder of your app.
 NSString *documentsPath = [NSHomeDirectory stringByAppendingPathComponent:@"Documents"];

现在,您可以使用此路径来附加文件路径并保存文件。
如果有任何疑问,请告诉我。

于 2012-06-09T08:11:44.890 回答