在我那台运行雪豹(Snow Leopard)的旧Mac电脑上,我可以在聚光灯下输入“ios”,它就会自动启动iPhone/iPad模拟器。

从那以后,我不得不换了一台运行Lion的新机器。我已经安装了Xcode for Lion,我已经从首选项面板中安装了开发人员工具选项。

但是“ios”选项不再存在:(现在唯一的方法似乎是运行Xcode,创建一个空项目,然后用run选项启动模拟器。

我已经搜索了一遍又一遍,但没有任何帮助。

有人知道如何在Lion上只运行模拟器吗?

更新: 这是对下面@ike_love帖子的回应。 这个答案并不能保证在优胜美地的所有机器上都适用。


当前回答

不需要在命令行上做任何事情。

只需使用spotlight运行模拟器。app

其他回答

我根据@trojanfoe的回答创建了一个自动化应用程序,这样你就可以直接从Dock https://github.com/tsdexter/ios-simulator-expo-utilities/启动iOS模拟器

不需要修改命令行,最简单的方法是:

启动Xcode一次。 运行ios模拟器 拖动ios模拟器图标停靠它。

下次你想使用它时,只需点击底座上的ios模拟器图标。

假设你在/Applications中安装了Xcode,那么你可以从命令行启动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

你可以在你的Desktop中创建一个符号链接来简化:

$ 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所指出的,你也可以给你的~/.bash_profile添加一个别名:

$ alias simulator='open /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/De‌​veloper/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

有一个更简单的方法:

点击命令+空格,Spotlight Search将出现 输入iOS模拟器,点击返回

完成了。

-----在跟进@E。Maggini downvote——

是的,您仍然可以使用Spotlight轻松访问iOS模拟器。

从终端运行这个命令:

ios-sim  start

或者,将其添加到~/。配置文件来节省你的几个按键:

alias ios="ios-sim  start"

不确定该命令在Max OS X和Xcode的哪个版本可用。我分别运行10.10.3和6.3。