我试图找出如何从我的 iphone 应用程序中查看应用程序目录。有没有办法在 xcode 中查看我的应用程序的文件夹结构?
感谢您的任何提示。
你可以看到一个包(.app):
您必须在模拟器中运行它,然后检查文件夹:
~/Library/Application Support/iPhone Simulator/
您使用过的每个 iOS 版本都会有一个子文件夹。进入你正在使用的当前iOS版本的文件夹,会有一个名为Applications的子文件夹,里面会有很多名字很奇怪的子文件夹。一个一个地检查它们,直到找到包含您的应用程序的那个:)
只是想尝试回答。如何记录它,如下所示:
//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 内部:
您必须先存档您的项目:
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 会告诉您应用程序在应用商店中的大小。实际尺寸如果是显示的一半。