ChatGPT解决这个技术问题 Extra ChatGPT

How to run iPhone emulator WITHOUT starting Xcode?

On my old Mac running Snow Leopard, I could type "ios" into spotlight and it would start up the iPhone/iPad emulator by itself.

I have since had to get a new machine running Lion. I have installed Xcode for Lion, I have installed the developer tool options from the preferences panel.

But the "ios" option is no longer there :( The only way now seems to be to run Xcode, create an empty project and then launch emulator with the run option.

I have searched and searched the intertubes and the facewebs, but nothing helps.

Does anyone know how to run only the emulator on Lion?

UPDATE: THIS IS RESPONSE TO @ike_love thread below. THAT answer is not assured to work on all Yosemite machines.

https://i.stack.imgur.com/mtMeC.png

type "simulator" instead of "ios" ;)

r
rels

Assuming you have Xcode installed in /Applications, then you can do this from the command line to start the iPhone Simulator:

$ 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

You could create a symbolic-link from your Desktop to make this easier:

$ 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

As pointed out by @JackHahoney, you could also add an alias to your ~/.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'

Which would mean you could start the iPhone Simulator from the command line with one easy-to-remember word:

$ simulator

echo "alias iphone='open /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app'" >> .bash_profile;. .bash_profile
Searching for it in Finder and dragging it to the Dock is clearly the way to go.
@HenrikErlandsson Add a new answer to the question then. Your downvote seems a little unfair as the answer I provide will do as the OP asks...
This should be updated per @daniel below: /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app
It is now open -a "Simulator" and open -a "Simulator (Watch)" for, obviously, the watch :)
S
SeanDL

The easiest way without fiddling with command line:

launch Xcode once. run ios simulator drag the ios simulator icon to dock it.

Next time you want to use it, just click on the ios simulator icon in the dock.


This should have been accepted as the answer. The terminal commands mentioned in the accepted answer may change for a future version of OS X. But the suggestion mentioned in this answer is not likely to change over versions.
Ehm no, the title says explicitely without starting xcode. Then second point is, if you restart your mac the icon is gone...
If you want to work with the app itself, do what this post says but, right click the dock icon and "Show in Finder" to reveal the location of the app in Finder. The location of the app has recently changed since the accepted answer above.
yeah! this way also works fine with spotlight quick search as well +1!
What worked for me is a variation of this. With the simulator (and Xcode) running there is an icon for the simulator in the dock area. Right-click on that icon and select Options - Keep in Dock.
b
bcattle

In XCode 7+ the location is now

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

Run it from the command line

$ open -a Simulator

Hope that helps somebody


$ open -a Simulator is the correct answer as of MacOS 10.14, XCode 10.1. Thanks!
So /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app/Contents/MacOS/Simulator runs the simulator
m
matygiu96

From Terminal you have to run:

open -a Simulator

This should have been accepted as the answer.
d
dhr_p

No need to do anything on the commandline.

Just use spotlight to run simulator.app

https://i.stack.imgur.com/Q2tr9.png


You can do basically this same thing with Alfred alfredapp.com
T
The iOSDev

https://i.stack.imgur.com/fyabd.png

Edit

https://i.stack.imgur.com/HROH5.png


It's worth pointing out here, that Xcode still needs to be open and running in order to access this submenu. This submenu will NOT display, if Xcode isn't already running - which is what your answer implies.
J
Jonathan Potter

You can get it to launch via spotlight if you create an Automator launcher for it:

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

https://i.stack.imgur.com/qnT63.png

To get a nice icon for the Automator app you just made, you can do the following:

Right click iOS Simulator.app and choose Get Info Click the icon in the upper left corner and do Cmd-C to copy it Right click your Automator app and choose Get Info Click the icon in the upper left corner and do Cmd-V to paste

https://i.stack.imgur.com/xE6ge.png


Great idea, as it's also usable in Alfred and easy to find later
J
Jimothy

As the multitude of answers indicate, there are lots of different ways to address this issue. Not all of them address what is my number one issue, and what seems to be the asker's priority, as well: The ability to launch from Spotlight.

Here's the solution that works well for me, and should work with any OS X and XCode versions. I've tested it on OS X 10.11 and XCode 7.3.

Initial setup does require launching XCode, but after that, you won't need to just to get to the Simulator.

Setup

Launch XCode From the XCode menu, select Open Developer Tool > Simulator In the dock, control (or right) click on the Simulator icon Select Options > Show in Finder While holding down Command and Option, drag the Simulator icon to the applications directory. This creates an alias to it. If desired, rename the alias from "Simulator" to "iOS Simulator". Whatever you name it is what it will show up as in Spotlight.

Note: There are other ways to get to the location of the Simulator app (steps 1-4), such as using Go to Folder… in the Finder, but those require knowing the location of the Simulator to begin with. Since that has changed from version to version of XCode, this way should work regardless of these changes.

Use

Launch Spotlight (command-space, etc.) Type "simulator" or "ios" (if you renamed the alias). If necessary, use the down arrow to scroll to the Simulator alias. Eventually, spotlight should learn and make the alias the top choice so you can skip this step. Hit return


on Sierra, simulator can be found with spotlight without any special setup.
@johnywhy For some reason, Spotlight doesn't find Simulator for some people, including me on a fairly fresh Sierra install. I'd love to find out how to get it to find it, but in the meantime, these steps help.
This is the most consolidated answer and makes it available on Finder as well.
This was not available to me via Spotlight in a fresh install of High Sierra.
a
alex

Try below instruction for launching iphone simulator:

Goto Application Folder-->Xcode app-->right click to Show Package Contents-->now show files in xcode contents-->Developer-->Platforms-->iPhoneSimulator.platform-->Developer-->Applications--> now show iOS Simulator app click to launch iphone simulator...!


d
daniel

With Xcode 6 the location of the simulator has changed to:

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

It can no longer be found here:

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

I hope this helps someone since I sometimes want to start the simulator from terminal.


V
Viktor

The solutions above didn't work for me in ZSH. I needed to escape the dot in the iPhoneSimulator.platform. This works for me:

alias simulator="open /Applications/Xcode.app/Contents/Developer/Applications/iOS\ Simulator.app"

This could be even more resilient version:

alias simulator="open -a 'iOS Simulator'"

Thanks this do the job
its not worked in x-code 5.1 + mavericks , but above tricks by @trojanfoe worked successfully...
S
SergeyB

There's a far easier way:

Hit command + space, Spotlight Search will appear Type in iOS Simulator and hit return

Done.

----- In follow up to @E. Maggini downvote---

Yes you can still easily access iOS Simulator using Spotlight.

https://i.stack.imgur.com/aA9PY.png


The question states that ios will not show up when running spotlight. Your answer, in fact, does not work since OSX Lion.
@E.Maggini, you are wrong. Above is a screenshot of iOS Simulator showing up in Spotlight using latest OS X Yosemite. So yes, in fact, my answer is correct and has been all along. If your OS X Lion does not show it, then there's something wrong with your OS X installation.
Too bad I can't add a screen shot here, because on my Yosemite machine at work which has a completely different install from my old machine at home....still no iOS results. Either way, the question asks for a solution BESIDES this....so.....
On my machine that is version 10.10.5 with xcode-beta(7.0), this answer does in fact work.
iOS simulator has been renamed to simply simulator. That's why it doesn't work anymore.
m
meow2x

In the terminal: For Xcode 9.x and above

$ open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app

For Xcode-beta 9.x and above

$ open /Applications/Xcode-beta.app/Contents/Developer/Applications/Simulator.app

j
jurgenizer

I know it is an old question, but this might help someone using Xcode11+ and macOS Catalina.

To see a list of available simulators via terminal, type:

$ xcrun simctl list

This will return a list of devices e.g., iPhone 11 Pro Max (6A7BEA2F-95E4-4A34-98C1-01C9906DCBDE) (Shutdown). The long string of characters is the device UUID.

To start the device via terminal, simply type:

$ xcrun simctl boot 6A7BEA2F-95E4-4A34-98C1-01C9906DCBDE

To shut it down, type:

$ xcrun simctl shutdown 6A7BEA2F-95E4-4A34-98C1-01C9906DCBDE

Alternatively, to launch a simulator:

open -a simulator

Source : How to Launch iOS Simulator and Android Emulator on Mac


this deserves more upvotes!
D
Dmytro Medvid

The easiest way is to use Spotlight Search. Just click CMD+Space and type in search Simulator. Just like this:

https://i.stack.imgur.com/3P7hb.png

And in few seconds emulated device will be loaded:

https://i.stack.imgur.com/bgfQp.jpg

To switch to another device you can use menu under Hardware -> Device

There are few different cool instruments you can use under Hardware menu, such as orientation change, gestures, buttons, FaceID, keyboard or audio inputs.


g
galdin

Go into Finder. On the sidebar, click applications. Find Xcode in Applications. Right click Xcode by whatever settings you have (usually two finger click [not tap]). Click "Show Package Contents." Go into the Contents folder. Search simulator. Wait 30 secs for it to load. Scroll down and find iOS Simulator. You may drag this onto the dock for easier access.

I hope this helps!


m
mfaani

In case you were trying to open multiple distinct simulators at once:

Open the Simulator app, not Xcode.

Then File >> Open Device >> Select iOS version >> select device.

https://i.stack.imgur.com/YdZB6.jpg

The location of the 'open device' has changed in different Xcode versions so it may be at a different place


t
tsdexter

I created an automator app based on @trojanfoe's answer so you can launch iOS Simulator directly from your Dock https://github.com/tsdexter/ios-simulator-expo-utilities/


K
Kyle Fox

From Terminal just run this command:

ios-sim  start

Or,add this to your ~/.profile to save yourself a few keystrokes:

alias ios="ios-sim  start"

Not sure which version of Max OS X and Xcode this command became available. I'm running 10.10.3 and 6.3 respectively.


This is not a part of OS X but a phonegap utility: github.com/phonegap/ios-sim