0

我试图找出如何从我的 iphone 应用程序中查看应用程序目录。有没有办法在 xcode 中查看我的应用程序的文件夹结构?

感谢您的任何提示。

4

4 回答 4

2

你可以看到一个包(.app):

  1. Ctrl + 单击 Xcode 项目导航器中的 .app。
  2. 选择“在 Finder 中显示”
  3. Ctrl + 单击 Finder 中的 .app 文件
  4. 选择“显示包装内容”
于 2012-09-05T14:08:52.957 回答
1

您必须在模拟器中运行它,然后检查文件夹:

~/Library/Application Support/iPhone Simulator/

您使用过的每个 iOS 版本都会有一个子文件夹。进入你正在使用的当前iOS版本的文件夹,会有一个名为Applications的子文件夹,里面会有很多名字很奇怪的子文件夹。一个一个地检查它们,直到找到包含您的应用程序的那个:)

于 2012-09-05T14:06:58.903 回答
1

只是想尝试回答。如何记录它,如下所示:

    //App Directory & Directory Contents
   NSString *appFolderPath = [[NSBundle mainBundle] resourcePath];
   NSFileManager *fileManager = [NSFileManager defaultManager];  
   NSLog(@"App Directory is: %@", appFolderPath);
   NSLog(@"Directory Contents:\n%@", [fileManager directoryContentsAtPath: appFolderPath]);

或者

Xcode 内部:

  • 窗口 > 管理器 > 项目
  • 选择项目
  • “Derived Data”有一个小箭头,它会显示Finder中的位置

在此处输入图像描述

于 2012-09-06T01:00:27.843 回答
0

您必须先存档您的项目:

Select the device instead of the simulator (you don't have to plug a device in first).
Go to: Product -> Archive.
Open your Organizer (right upper corner).
Go to the Archive and right-click on your archived project, click on "Show in Finder".

在您选择项目时,在管理器中,xcode 会告诉您应用程序在应用商店中的大小。实际尺寸如果是显示的一半。

于 2012-09-05T14:19:34.823 回答