我正在閱讀關於Appium(iOS)的設置文檔this,我對它在「在Xcode項目中執行以下命令」的含義有些困惑:「我是否必須從項目目錄運行命令,還是我實際上必須使用Xcode程序?只需輸入此命令顯然不起作用。任何幫助,將不勝感激!「在Xcode項目中執行命令」是什麼意思?
1
A
回答
3
這是一個你可以使用的shell(終端)命令(如果你已經安裝了命令行工具),所以只需打開一個終端並粘貼命令即可。
這裏是手冊頁xcodebuild command
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.
相關問題
- 1. 命令行中的「@」是什麼意思?
- 2. 這個命令是什麼意思,什麼函數執行?
- 3. 運行命令時,$是什麼意思?
- 4. '。'是什麼意思?和'..'的意思是在Matlab dir()命令中?
- 5. xcode中項目/目標的單獨設置是什麼意思?
- 6. Windows命令什麼意思?
- 7. 思科pix命令 - 這個命令是什麼意思?
- 8. 這個unix命令是什麼意思?
- 9. Linux命令,它們是什麼意思?
- 10. 這個gcc命令是什麼意思?
- 11. linux命令「ps auwwx」是什麼意思?
- 12. 這條命令是什麼意思?
- 13. 這條命令是什麼意思
- 14. 這個命令是什麼意思?
- 15. 錯誤「執行任務需要命令執行」是什麼意思?
- 16. 這是什麼〜/在命令行上的意思是
- 17. 這是什麼意思這個命令來運行一個Perl Web項目?
- 18. 這個java命令行中的「$ CP」是什麼意思?
- 19. 是什麼「:?」意思是在這個shell命令中?
- 20. PM2啓動的命令行參數是什麼意思是
- 21. 是什麼意思:是什麼意思?
- 22. zip -j命令,-j選項是什麼意思?
- 23. devenv命令開關的配置選項是什麼意思?
- 24. 在linux中,'make'命令是什麼意思?
- 25. 在git archive命令中,HEAD:path/to/dir是什麼意思?
- 26. 在某些命令文件中,「[]」或「<>」是什麼意思?
- 27. 在這個git reset命令中〜1是什麼意思?
- 28. 這個命令在批處理中是什麼意思?
- 29. 在find命令中,最後的「{} +」是什麼意思?
- 30. 「在路徑中查找命令」是什麼意思?
我有安裝的命令行工具,這是我嘗試的第一件事。我得到'xcodebuild:錯誤:找不到SDK「iphonesimulator6.0」。# – Carpetfizz
導航到'preferences'(xcode的一個),然後到'downloads'部分,並檢查是否安裝了iOS 6.0 Simulator。 – ludesign
或者使用'xcodebuild -showsdks'來獲取可用SDK的列表。 –