에 Xcode가 설치되어 있다고 가정하면 /Applications
명령 줄에서 iPhone 시뮬레이터를 시작할 수 있습니다.
$ open /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app
(Xcode 6+) :
$ open /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app
데스크탑에서 심볼릭 링크를 만들어이를보다 쉽게 만들 수 있습니다.
$ ln -s /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app ~/Desktop
(Xcode 6+) :
$ ln -s /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app ~/Desktop
@JackHahoney에 의해 지적, 당신은 또한을 추가 할 수 있습니다 alias
당신에게 ~/.bash_profile
:
$ alias simulator='open /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app'
(Xcode 6+) :
$ alias simulator='open /Applications/Xcode.app/Contents/Developer/Applications/iOS\ Simulator.app'
(Xcode 7+) :
$ alias simulator='open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app'
즉, 기억하기 쉬운 단어 하나를 사용하여 명령 줄에서 iPhone Simulator를 시작할 수 있습니다.
$ simulator