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

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

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

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

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

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


当前回答

假设你在/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

其他回答

在Xcode 6中,模拟器的位置更改为:

/Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app

这里已经找不到它了:

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app

我希望这有助于某人,因为我有时想从终端启动模拟器。

最简单的方法是使用Spotlight Search。只需点击CMD+空格,并键入搜索模拟器。就像这样:

并在几秒钟内模拟设备将加载:

要切换到另一个设备,可以使用硬件->设备下的菜单

在硬件菜单下,你可以使用一些不同的很酷的工具,比如方向改变、手势、按钮、FaceID、键盘或音频输入。

如果你试图同时打开多个不同的模拟器:

打开模拟器应用,而不是Xcode。

然后“File >> Open Device >>”选择iOS版本>>选择设备。

“打开设备”的位置在不同的Xcode版本中发生了变化,所以它可能在不同的地方

看图片对你有帮助吗

Edit

现在有了新的Xcode如果Xcode的图标在dock上你可以右键点击它,形成菜单你可以选择打开开发人员工具在子菜单中你可以选择iOS模拟器来打开模拟器而不需要打开Xcode !

如果你为它创建了一个Automator启动器,你可以让它通过spotlight启动:

Open Automator.app Choose type of Application Select Actions > Library > Utilities > Launch Application Open the dropdown of applications that can be launched and choose Other You can't directly select the Simulator app because it's inside the Xcode.app package. So instead you'll have to navigate to it in a separate Finder window and drag it onto the file selector window. It will be at one of the following paths depending on your version of Xcode (oldest to newest): /Applications/Xcode.app/Contents/Developer/iOS Simulator.app /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iOS Simulator.app /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app Finally, save this Automator app in your applications folder as iOS Simulator.app

要为你刚刚制作的Automator应用程序获得一个漂亮的图标,你可以做以下事情:

右键单击iOS模拟器。app,然后选择Get Info 点击左上角的图标,执行Cmd-C复制 右键单击您的Automator应用程序并选择获取信息 点击左上角的图标,点击Cmd-V进行粘贴