Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要实现的是在vim运行时编辑代码,这将调用与 Xcode 中的+make相同的功能:构建并启动具有最新更改的模拟器。CmdR
vim
make
在这个过程中调用了哪些实际命令以及使用了哪些参数?有没有办法从 Xcode 中查看?
尝试xcodebuild从项目目录运行。使用--help参数运行将显示您需要的所有内容 - 要构建的项目、要运行的目标、要使用的 sdk(iphoneos 或 iphonesimulator)。通常调用如下所示:
xcodebuild
--help
xcodebuild -project MyProject -target MyApplication -configuration Release -sdk iphonesimulator5.1