1

I haven't used Xcode since version 3.x. Now I have 4.3 and I can't figure out how to build for release and then get my app to the app store. (This is an update to an existing app). According to Apple documentation, you have to Archive your app first. Their instructions say:

  1. From the Scheme toolbar menu, choose a scheme.
  2. From the same menu, choose Edit Scheme to display the scheme dialog.

Problem is, I don't see any "Scheme toolbar menu" or "Edit Scheme" button, so I can't get passed that step.

4

1 回答 1

0

Xcode 方案定义了要构建的目标集合、构建时要使用的配置以及要执行的测试集合。

您可以拥有任意数量的方案,但一次只能激活一个。您可以指定方案是否应存储在项目中——在这种情况下,它在包含该项目的每个工作区中都可用,或者在工作区中——在这种情况下,它仅在该工作区中可用。当您选择一个活动方案时,您还选择了一个运行目标(即构建产品的硬件架构)。

下面的链接显示了如何管理 sceme http://developer.apple.com/library/ios/#recipes/xcode_help-scheme_editor/Articles/SchemeManage.html#//apple_ref/doc/uid/TP40010402-CH8

于 2012-03-20T06:16:21.310 回答