Can xcodebuild automatically install and launch the iOS simulator?
I am working on an ANT build that will build a project for use within the iOS 开发者_StackOverflowsimulator. Is it possible to have xcodebuild automatically launch the simulator and install the compiled app (similar to how Xcode does it)?
Not with xcodebuild command, no.
I use the following to great effect: https://github.com/jhaynie/iphonesim
It has the option to launch an app directly in the simulator.
精彩评论