2013-07-13 79 views
1

我正在閱讀關於Appium(iOS)的設置文檔this,我對它在「在Xcode項目中執行以下命令」的含義有些困惑:「我是否必須從項目目錄運行命令,還是我實際上必須使用Xcode程序?只需輸入此命令顯然不起作用。任何幫助,將不勝感激!「在Xcode項目中執行命令」是什麼意思?

回答

3

這是一個你可以使用的shell(終端)命令(如果你已經安裝了命令行工具),所以只需打開一個終端並粘貼命令即可。

這裏是手冊頁xcodebuild command

+0

我有安裝的命令行工具,這是我嘗試的第一件事。我得到'xcodebuild:錯誤:找不到SDK「iphonesimulator6.0」。# – Carpetfizz

+0

導航到'preferences'(xcode的一個),然後到'downloads'部分,並檢查是否安裝了iOS 6.0 Simulator。 – ludesign

+0

或者使用'xcodebuild -showsdks'來獲取可用SDK的列表。 –

1

xcodebuild是一個命令行程序,它應該從你的項目目錄內運行 - 見the man page

To build an Xcode project, run xcodebuild from the directory containing your project (i.e. the directory containing the projectname.xcodeproj package). If you have multiple projects in the this directory you will need to use -project to indicate which project should be built. By default, xcodebuild builds the first target listed in the project, with the default build configuration. The order of the targets is a property of the project and is the same for all users of the project.

相關問題