我试着找出如何从我的iphone应用程序中查看app目录。有没有办法在xcode中查看我的应用程序的文件夹结构?
感谢任何提示。
答案 0 :(得分:2)
你可以看到一个包(.app):
答案 1 :(得分:1)
您必须在模拟器中运行它,然后检查文件夹:
~/Library/Application Support/iPhone Simulator/
您使用的每个iOS版本都会有一个子文件夹。进入你正在使用的当前iOS版本的文件夹,将会有一个名为Applications的子文件夹,在其中会有很多带有奇怪名称的子文件夹。逐个检查它们,直到找到包含您的应用程序的那个:)
答案 2 :(得分: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内部:
答案 3 :(得分: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会告诉您应用程序在appstore上有多大。实际尺寸,如果显示的一半大。