哪里是指X code我的应用程序二进制?

哪里是指X code我的应用程序二进制?

问题描述:

我已经建立了iTunes商店的应用程序。然而,作为一个小白的平台,我无法弄清楚如何提交应用程序。

I've built an app for the iTunes store. However, being a noob to the platform, I can't figure out how to submit the app.

在哪里,我需要提交到iTunes商店实际的二进制?是否得到建在哪个文件夹?

Where is the actual binary that I need to submit to the iTunes store? What folder does it get built in?

在默认情况下,你会看到包含项目目录内的一个build目录。

在这个build目录:

By default, you'll see a build directory inside the directory containing your project.
In that build directory:

<项目名称> .build`包含了所有在编译过程中创建的目标文件

<Project Name>.build` contains all the object files created during compilation

和具有以下命名方案的一系列文件夹:

and a series of folders with the following naming scheme:

<build setting>-<platform>

你很可能会寻找类似发行-的iPhoneOS。在该文件夹,你应该找到的.app包来提交。

You're likely looking for something like "Release-iphoneos". In that folder you should find the .app package to submit.