Can I start the iPhone simulator without “Build and Run”?
up vote
114
down vote
favorite
I want to delete an app in the simulator before I "build and run". How can I start the simulator so I can do the deletion? If I start it by "build and run" I get a long log output that takes a while because of a bug I'm trying to fix. I'd like to avoid that.
xcode ios-simulator
add a comment |
up vote
114
down vote
favorite
I want to delete an app in the simulator before I "build and run". How can I start the simulator so I can do the deletion? If I start it by "build and run" I get a long log output that takes a while because of a bug I'm trying to fix. I'd like to avoid that.
xcode ios-simulator
add a comment |
up vote
114
down vote
favorite
up vote
114
down vote
favorite
I want to delete an app in the simulator before I "build and run". How can I start the simulator so I can do the deletion? If I start it by "build and run" I get a long log output that takes a while because of a bug I'm trying to fix. I'd like to avoid that.
xcode ios-simulator
I want to delete an app in the simulator before I "build and run". How can I start the simulator so I can do the deletion? If I start it by "build and run" I get a long log output that takes a while because of a bug I'm trying to fix. I'd like to avoid that.
xcode ios-simulator
xcode ios-simulator
asked Feb 19 '11 at 2:52
RobertL
4,736103238
4,736103238
add a comment |
add a comment |
10 Answers
10
active
oldest
votes
up vote
213
down vote
accepted
The simulator is just an application, and as such you can run it like any other application.
To run the simulator straight from terminal prepend these locations with the open
command
Xcode 7.x, 8.x, and 9.x
In Xcode 7.x, the iPhone Simulator has moved again: /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app
.
Xcode 6.x
In Xcode 6.x, the iPhone Simulator has moved yet again, and now resides here: /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app
.
Xcode 4.x, 5.x
In Xcode 4.x (through 4.5 on Mountain Lion) and Xcode 5.0.x on Mavericks, it lives here: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/
In my version of Xcode (4.5.2), I find it quite convenient to use the Open Developer Tool
menu from either the dock icon or the Xcode menu:
Xcode 3.x
In Xcode 3.x, it lives here:
/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app
In some future version of Xcode, it will probably move again, it's a squirrelly little app.
3
@jimbojw - It's a application bundle, so yes it's a folder too. If you double-click it (or use theopen
terminal command), it will run. Incidentally, it's called "iOS Simulator.app" with newer iPhone SDKs.
– Seth
Mar 27 '12 at 22:58
1
Thank you - theopen
was the missing piece.
– jimbojw
May 24 '12 at 16:16
4
The full path I found this at was/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app
– Michael Mior
Jul 12 '12 at 13:23
2
Also note that if you go the path in the above comment in Finder, you can just drag the simulator down into your dock like any other app.
– Mike
Aug 7 '13 at 0:50
1
I found it at "/Applications/Xcode.app/Contents/Applications/iOS Simulator.app" . To change devices, from within the simulator app, click Hardware > Devices.
– Cheeso
Apr 15 '15 at 18:53
|
show 4 more comments
up vote
34
down vote
Since XCode 4.3 the location has changed, the simulator can now be found at:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/
add a comment |
up vote
25
down vote
From Terminal you can use:
open -a iPhone Simulator
open -a iOS Simulator
open -a Simulator
This all depends on the application name of the simulator, this can change with each iteration of Xcode.
3
This is the easiest solution by far. If it doesn't work, try withiOS Simulator
instead.
– Felix
Mar 15 '15 at 13:12
3
xcode 7.2.1, use "open -a Simulator".
– AnneTheAgile
Feb 16 '16 at 15:36
add a comment |
up vote
24
down vote
To follow up on that the new command from @jimbojw to create a shortcut with the new Xcode (installing through preferences) is:
ln -s /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app /Applications/iPhone Simulator.app
Which will create a shortcut in the applications folder for you.
add a comment |
up vote
7
down vote
First, add the iOS Simulator to Applications:
ln -s /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app /Applications/iPhone Simulator.app
From there you can open it in Finder or drag it to the launch bar.
Source: http://www.bram.us/2010/05/05/xcode-iphone-simulator-location/
add a comment |
up vote
6
down vote
This is an older question, but if you simply want to run the simulator from the Xcode 4.5 UI, you can do: Xcode > Open Developer Tool > iOS Simulator.
1
The Open Developer Tool menu is also accessible by right-clicking on Xcode in the Dock. facebook.com/mattdipasquale/posts/880720811276
– ma11hew28
Oct 8 '12 at 21:42
@joeriks I know exactly how you feel! I spent 10 years working at MSFT on Windows!
– delliottg
Nov 1 '13 at 15:27
add a comment |
up vote
4
down vote
Use Spotlight.
But only the last simulator will be opened. If you used iPad Air 2
last time, Spotlight will open it. If you wanna open iPhone 6s
this time, that's a problem.
add a comment |
up vote
3
down vote
The easiest way is start the simulator from the Xcode
, and then on the dock, Ctrl
+ Click
on the icon and select Keep in Dock
add a comment |
up vote
3
down vote
Without opening Xcode:
open /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app/
1
To that, I added an alias to ~/.bash_profile:alias ios="open /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app"
which lets me just runios
from the command line.
– ghayes
Mar 3 '15 at 18:29
1
FYI, on my machine the application is justSimulator.app
notiOS Simulator.app
.
– Joshua Pinter
Feb 12 '17 at 20:51
add a comment |
up vote
2
down vote
For Xcode 7.2
open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app/Contents/MacOS/Simulator.app
sudo ./Simulator
And adding this path in your profile is the best way.
add a comment |
10 Answers
10
active
oldest
votes
10 Answers
10
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
213
down vote
accepted
The simulator is just an application, and as such you can run it like any other application.
To run the simulator straight from terminal prepend these locations with the open
command
Xcode 7.x, 8.x, and 9.x
In Xcode 7.x, the iPhone Simulator has moved again: /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app
.
Xcode 6.x
In Xcode 6.x, the iPhone Simulator has moved yet again, and now resides here: /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app
.
Xcode 4.x, 5.x
In Xcode 4.x (through 4.5 on Mountain Lion) and Xcode 5.0.x on Mavericks, it lives here: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/
In my version of Xcode (4.5.2), I find it quite convenient to use the Open Developer Tool
menu from either the dock icon or the Xcode menu:
Xcode 3.x
In Xcode 3.x, it lives here:
/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app
In some future version of Xcode, it will probably move again, it's a squirrelly little app.
3
@jimbojw - It's a application bundle, so yes it's a folder too. If you double-click it (or use theopen
terminal command), it will run. Incidentally, it's called "iOS Simulator.app" with newer iPhone SDKs.
– Seth
Mar 27 '12 at 22:58
1
Thank you - theopen
was the missing piece.
– jimbojw
May 24 '12 at 16:16
4
The full path I found this at was/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app
– Michael Mior
Jul 12 '12 at 13:23
2
Also note that if you go the path in the above comment in Finder, you can just drag the simulator down into your dock like any other app.
– Mike
Aug 7 '13 at 0:50
1
I found it at "/Applications/Xcode.app/Contents/Applications/iOS Simulator.app" . To change devices, from within the simulator app, click Hardware > Devices.
– Cheeso
Apr 15 '15 at 18:53
|
show 4 more comments
up vote
213
down vote
accepted
The simulator is just an application, and as such you can run it like any other application.
To run the simulator straight from terminal prepend these locations with the open
command
Xcode 7.x, 8.x, and 9.x
In Xcode 7.x, the iPhone Simulator has moved again: /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app
.
Xcode 6.x
In Xcode 6.x, the iPhone Simulator has moved yet again, and now resides here: /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app
.
Xcode 4.x, 5.x
In Xcode 4.x (through 4.5 on Mountain Lion) and Xcode 5.0.x on Mavericks, it lives here: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/
In my version of Xcode (4.5.2), I find it quite convenient to use the Open Developer Tool
menu from either the dock icon or the Xcode menu:
Xcode 3.x
In Xcode 3.x, it lives here:
/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app
In some future version of Xcode, it will probably move again, it's a squirrelly little app.
3
@jimbojw - It's a application bundle, so yes it's a folder too. If you double-click it (or use theopen
terminal command), it will run. Incidentally, it's called "iOS Simulator.app" with newer iPhone SDKs.
– Seth
Mar 27 '12 at 22:58
1
Thank you - theopen
was the missing piece.
– jimbojw
May 24 '12 at 16:16
4
The full path I found this at was/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app
– Michael Mior
Jul 12 '12 at 13:23
2
Also note that if you go the path in the above comment in Finder, you can just drag the simulator down into your dock like any other app.
– Mike
Aug 7 '13 at 0:50
1
I found it at "/Applications/Xcode.app/Contents/Applications/iOS Simulator.app" . To change devices, from within the simulator app, click Hardware > Devices.
– Cheeso
Apr 15 '15 at 18:53
|
show 4 more comments
up vote
213
down vote
accepted
up vote
213
down vote
accepted
The simulator is just an application, and as such you can run it like any other application.
To run the simulator straight from terminal prepend these locations with the open
command
Xcode 7.x, 8.x, and 9.x
In Xcode 7.x, the iPhone Simulator has moved again: /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app
.
Xcode 6.x
In Xcode 6.x, the iPhone Simulator has moved yet again, and now resides here: /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app
.
Xcode 4.x, 5.x
In Xcode 4.x (through 4.5 on Mountain Lion) and Xcode 5.0.x on Mavericks, it lives here: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/
In my version of Xcode (4.5.2), I find it quite convenient to use the Open Developer Tool
menu from either the dock icon or the Xcode menu:
Xcode 3.x
In Xcode 3.x, it lives here:
/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app
In some future version of Xcode, it will probably move again, it's a squirrelly little app.
The simulator is just an application, and as such you can run it like any other application.
To run the simulator straight from terminal prepend these locations with the open
command
Xcode 7.x, 8.x, and 9.x
In Xcode 7.x, the iPhone Simulator has moved again: /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app
.
Xcode 6.x
In Xcode 6.x, the iPhone Simulator has moved yet again, and now resides here: /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app
.
Xcode 4.x, 5.x
In Xcode 4.x (through 4.5 on Mountain Lion) and Xcode 5.0.x on Mavericks, it lives here: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/
In my version of Xcode (4.5.2), I find it quite convenient to use the Open Developer Tool
menu from either the dock icon or the Xcode menu:
Xcode 3.x
In Xcode 3.x, it lives here:
/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app
In some future version of Xcode, it will probably move again, it's a squirrelly little app.
edited Oct 22 '17 at 21:07
answered Feb 19 '11 at 3:05
Seth
32.7k671113
32.7k671113
3
@jimbojw - It's a application bundle, so yes it's a folder too. If you double-click it (or use theopen
terminal command), it will run. Incidentally, it's called "iOS Simulator.app" with newer iPhone SDKs.
– Seth
Mar 27 '12 at 22:58
1
Thank you - theopen
was the missing piece.
– jimbojw
May 24 '12 at 16:16
4
The full path I found this at was/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app
– Michael Mior
Jul 12 '12 at 13:23
2
Also note that if you go the path in the above comment in Finder, you can just drag the simulator down into your dock like any other app.
– Mike
Aug 7 '13 at 0:50
1
I found it at "/Applications/Xcode.app/Contents/Applications/iOS Simulator.app" . To change devices, from within the simulator app, click Hardware > Devices.
– Cheeso
Apr 15 '15 at 18:53
|
show 4 more comments
3
@jimbojw - It's a application bundle, so yes it's a folder too. If you double-click it (or use theopen
terminal command), it will run. Incidentally, it's called "iOS Simulator.app" with newer iPhone SDKs.
– Seth
Mar 27 '12 at 22:58
1
Thank you - theopen
was the missing piece.
– jimbojw
May 24 '12 at 16:16
4
The full path I found this at was/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app
– Michael Mior
Jul 12 '12 at 13:23
2
Also note that if you go the path in the above comment in Finder, you can just drag the simulator down into your dock like any other app.
– Mike
Aug 7 '13 at 0:50
1
I found it at "/Applications/Xcode.app/Contents/Applications/iOS Simulator.app" . To change devices, from within the simulator app, click Hardware > Devices.
– Cheeso
Apr 15 '15 at 18:53
3
3
@jimbojw - It's a application bundle, so yes it's a folder too. If you double-click it (or use the
open
terminal command), it will run. Incidentally, it's called "iOS Simulator.app" with newer iPhone SDKs.– Seth
Mar 27 '12 at 22:58
@jimbojw - It's a application bundle, so yes it's a folder too. If you double-click it (or use the
open
terminal command), it will run. Incidentally, it's called "iOS Simulator.app" with newer iPhone SDKs.– Seth
Mar 27 '12 at 22:58
1
1
Thank you - the
open
was the missing piece.– jimbojw
May 24 '12 at 16:16
Thank you - the
open
was the missing piece.– jimbojw
May 24 '12 at 16:16
4
4
The full path I found this at was
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app
– Michael Mior
Jul 12 '12 at 13:23
The full path I found this at was
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app
– Michael Mior
Jul 12 '12 at 13:23
2
2
Also note that if you go the path in the above comment in Finder, you can just drag the simulator down into your dock like any other app.
– Mike
Aug 7 '13 at 0:50
Also note that if you go the path in the above comment in Finder, you can just drag the simulator down into your dock like any other app.
– Mike
Aug 7 '13 at 0:50
1
1
I found it at "/Applications/Xcode.app/Contents/Applications/iOS Simulator.app" . To change devices, from within the simulator app, click Hardware > Devices.
– Cheeso
Apr 15 '15 at 18:53
I found it at "/Applications/Xcode.app/Contents/Applications/iOS Simulator.app" . To change devices, from within the simulator app, click Hardware > Devices.
– Cheeso
Apr 15 '15 at 18:53
|
show 4 more comments
up vote
34
down vote
Since XCode 4.3 the location has changed, the simulator can now be found at:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/
add a comment |
up vote
34
down vote
Since XCode 4.3 the location has changed, the simulator can now be found at:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/
add a comment |
up vote
34
down vote
up vote
34
down vote
Since XCode 4.3 the location has changed, the simulator can now be found at:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/
Since XCode 4.3 the location has changed, the simulator can now be found at:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/
answered Apr 17 '12 at 10:12
inta
56021116
56021116
add a comment |
add a comment |
up vote
25
down vote
From Terminal you can use:
open -a iPhone Simulator
open -a iOS Simulator
open -a Simulator
This all depends on the application name of the simulator, this can change with each iteration of Xcode.
3
This is the easiest solution by far. If it doesn't work, try withiOS Simulator
instead.
– Felix
Mar 15 '15 at 13:12
3
xcode 7.2.1, use "open -a Simulator".
– AnneTheAgile
Feb 16 '16 at 15:36
add a comment |
up vote
25
down vote
From Terminal you can use:
open -a iPhone Simulator
open -a iOS Simulator
open -a Simulator
This all depends on the application name of the simulator, this can change with each iteration of Xcode.
3
This is the easiest solution by far. If it doesn't work, try withiOS Simulator
instead.
– Felix
Mar 15 '15 at 13:12
3
xcode 7.2.1, use "open -a Simulator".
– AnneTheAgile
Feb 16 '16 at 15:36
add a comment |
up vote
25
down vote
up vote
25
down vote
From Terminal you can use:
open -a iPhone Simulator
open -a iOS Simulator
open -a Simulator
This all depends on the application name of the simulator, this can change with each iteration of Xcode.
From Terminal you can use:
open -a iPhone Simulator
open -a iOS Simulator
open -a Simulator
This all depends on the application name of the simulator, this can change with each iteration of Xcode.
edited Apr 5 '17 at 15:47
answered Jun 14 '13 at 22:49
atreat
2,6842131
2,6842131
3
This is the easiest solution by far. If it doesn't work, try withiOS Simulator
instead.
– Felix
Mar 15 '15 at 13:12
3
xcode 7.2.1, use "open -a Simulator".
– AnneTheAgile
Feb 16 '16 at 15:36
add a comment |
3
This is the easiest solution by far. If it doesn't work, try withiOS Simulator
instead.
– Felix
Mar 15 '15 at 13:12
3
xcode 7.2.1, use "open -a Simulator".
– AnneTheAgile
Feb 16 '16 at 15:36
3
3
This is the easiest solution by far. If it doesn't work, try with
iOS Simulator
instead.– Felix
Mar 15 '15 at 13:12
This is the easiest solution by far. If it doesn't work, try with
iOS Simulator
instead.– Felix
Mar 15 '15 at 13:12
3
3
xcode 7.2.1, use "open -a Simulator".
– AnneTheAgile
Feb 16 '16 at 15:36
xcode 7.2.1, use "open -a Simulator".
– AnneTheAgile
Feb 16 '16 at 15:36
add a comment |
up vote
24
down vote
To follow up on that the new command from @jimbojw to create a shortcut with the new Xcode (installing through preferences) is:
ln -s /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app /Applications/iPhone Simulator.app
Which will create a shortcut in the applications folder for you.
add a comment |
up vote
24
down vote
To follow up on that the new command from @jimbojw to create a shortcut with the new Xcode (installing through preferences) is:
ln -s /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app /Applications/iPhone Simulator.app
Which will create a shortcut in the applications folder for you.
add a comment |
up vote
24
down vote
up vote
24
down vote
To follow up on that the new command from @jimbojw to create a shortcut with the new Xcode (installing through preferences) is:
ln -s /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app /Applications/iPhone Simulator.app
Which will create a shortcut in the applications folder for you.
To follow up on that the new command from @jimbojw to create a shortcut with the new Xcode (installing through preferences) is:
ln -s /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app /Applications/iPhone Simulator.app
Which will create a shortcut in the applications folder for you.
answered Jun 12 '12 at 10:05
user1450909
24123
24123
add a comment |
add a comment |
up vote
7
down vote
First, add the iOS Simulator to Applications:
ln -s /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app /Applications/iPhone Simulator.app
From there you can open it in Finder or drag it to the launch bar.
Source: http://www.bram.us/2010/05/05/xcode-iphone-simulator-location/
add a comment |
up vote
7
down vote
First, add the iOS Simulator to Applications:
ln -s /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app /Applications/iPhone Simulator.app
From there you can open it in Finder or drag it to the launch bar.
Source: http://www.bram.us/2010/05/05/xcode-iphone-simulator-location/
add a comment |
up vote
7
down vote
up vote
7
down vote
First, add the iOS Simulator to Applications:
ln -s /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app /Applications/iPhone Simulator.app
From there you can open it in Finder or drag it to the launch bar.
Source: http://www.bram.us/2010/05/05/xcode-iphone-simulator-location/
First, add the iOS Simulator to Applications:
ln -s /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app /Applications/iPhone Simulator.app
From there you can open it in Finder or drag it to the launch bar.
Source: http://www.bram.us/2010/05/05/xcode-iphone-simulator-location/
answered Mar 27 '12 at 15:41
jimbojw
9,14352439
9,14352439
add a comment |
add a comment |
up vote
6
down vote
This is an older question, but if you simply want to run the simulator from the Xcode 4.5 UI, you can do: Xcode > Open Developer Tool > iOS Simulator.
1
The Open Developer Tool menu is also accessible by right-clicking on Xcode in the Dock. facebook.com/mattdipasquale/posts/880720811276
– ma11hew28
Oct 8 '12 at 21:42
@joeriks I know exactly how you feel! I spent 10 years working at MSFT on Windows!
– delliottg
Nov 1 '13 at 15:27
add a comment |
up vote
6
down vote
This is an older question, but if you simply want to run the simulator from the Xcode 4.5 UI, you can do: Xcode > Open Developer Tool > iOS Simulator.
1
The Open Developer Tool menu is also accessible by right-clicking on Xcode in the Dock. facebook.com/mattdipasquale/posts/880720811276
– ma11hew28
Oct 8 '12 at 21:42
@joeriks I know exactly how you feel! I spent 10 years working at MSFT on Windows!
– delliottg
Nov 1 '13 at 15:27
add a comment |
up vote
6
down vote
up vote
6
down vote
This is an older question, but if you simply want to run the simulator from the Xcode 4.5 UI, you can do: Xcode > Open Developer Tool > iOS Simulator.
This is an older question, but if you simply want to run the simulator from the Xcode 4.5 UI, you can do: Xcode > Open Developer Tool > iOS Simulator.
answered Oct 2 '12 at 22:28
delliottg
2,23812341
2,23812341
1
The Open Developer Tool menu is also accessible by right-clicking on Xcode in the Dock. facebook.com/mattdipasquale/posts/880720811276
– ma11hew28
Oct 8 '12 at 21:42
@joeriks I know exactly how you feel! I spent 10 years working at MSFT on Windows!
– delliottg
Nov 1 '13 at 15:27
add a comment |
1
The Open Developer Tool menu is also accessible by right-clicking on Xcode in the Dock. facebook.com/mattdipasquale/posts/880720811276
– ma11hew28
Oct 8 '12 at 21:42
@joeriks I know exactly how you feel! I spent 10 years working at MSFT on Windows!
– delliottg
Nov 1 '13 at 15:27
1
1
The Open Developer Tool menu is also accessible by right-clicking on Xcode in the Dock. facebook.com/mattdipasquale/posts/880720811276
– ma11hew28
Oct 8 '12 at 21:42
The Open Developer Tool menu is also accessible by right-clicking on Xcode in the Dock. facebook.com/mattdipasquale/posts/880720811276
– ma11hew28
Oct 8 '12 at 21:42
@joeriks I know exactly how you feel! I spent 10 years working at MSFT on Windows!
– delliottg
Nov 1 '13 at 15:27
@joeriks I know exactly how you feel! I spent 10 years working at MSFT on Windows!
– delliottg
Nov 1 '13 at 15:27
add a comment |
up vote
4
down vote
Use Spotlight.
But only the last simulator will be opened. If you used iPad Air 2
last time, Spotlight will open it. If you wanna open iPhone 6s
this time, that's a problem.
add a comment |
up vote
4
down vote
Use Spotlight.
But only the last simulator will be opened. If you used iPad Air 2
last time, Spotlight will open it. If you wanna open iPhone 6s
this time, that's a problem.
add a comment |
up vote
4
down vote
up vote
4
down vote
Use Spotlight.
But only the last simulator will be opened. If you used iPad Air 2
last time, Spotlight will open it. If you wanna open iPhone 6s
this time, that's a problem.
Use Spotlight.
But only the last simulator will be opened. If you used iPad Air 2
last time, Spotlight will open it. If you wanna open iPhone 6s
this time, that's a problem.
answered Nov 13 '15 at 3:56
Jaybo
637710
637710
add a comment |
add a comment |
up vote
3
down vote
The easiest way is start the simulator from the Xcode
, and then on the dock, Ctrl
+ Click
on the icon and select Keep in Dock
add a comment |
up vote
3
down vote
The easiest way is start the simulator from the Xcode
, and then on the dock, Ctrl
+ Click
on the icon and select Keep in Dock
add a comment |
up vote
3
down vote
up vote
3
down vote
The easiest way is start the simulator from the Xcode
, and then on the dock, Ctrl
+ Click
on the icon and select Keep in Dock
The easiest way is start the simulator from the Xcode
, and then on the dock, Ctrl
+ Click
on the icon and select Keep in Dock
answered Sep 26 '14 at 1:56
Thai Tran
7,50463351
7,50463351
add a comment |
add a comment |
up vote
3
down vote
Without opening Xcode:
open /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app/
1
To that, I added an alias to ~/.bash_profile:alias ios="open /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app"
which lets me just runios
from the command line.
– ghayes
Mar 3 '15 at 18:29
1
FYI, on my machine the application is justSimulator.app
notiOS Simulator.app
.
– Joshua Pinter
Feb 12 '17 at 20:51
add a comment |
up vote
3
down vote
Without opening Xcode:
open /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app/
1
To that, I added an alias to ~/.bash_profile:alias ios="open /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app"
which lets me just runios
from the command line.
– ghayes
Mar 3 '15 at 18:29
1
FYI, on my machine the application is justSimulator.app
notiOS Simulator.app
.
– Joshua Pinter
Feb 12 '17 at 20:51
add a comment |
up vote
3
down vote
up vote
3
down vote
Without opening Xcode:
open /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app/
Without opening Xcode:
open /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app/
answered Feb 26 '15 at 14:59
bolinfest
2,77122033
2,77122033
1
To that, I added an alias to ~/.bash_profile:alias ios="open /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app"
which lets me just runios
from the command line.
– ghayes
Mar 3 '15 at 18:29
1
FYI, on my machine the application is justSimulator.app
notiOS Simulator.app
.
– Joshua Pinter
Feb 12 '17 at 20:51
add a comment |
1
To that, I added an alias to ~/.bash_profile:alias ios="open /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app"
which lets me just runios
from the command line.
– ghayes
Mar 3 '15 at 18:29
1
FYI, on my machine the application is justSimulator.app
notiOS Simulator.app
.
– Joshua Pinter
Feb 12 '17 at 20:51
1
1
To that, I added an alias to ~/.bash_profile:
alias ios="open /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app"
which lets me just run ios
from the command line.– ghayes
Mar 3 '15 at 18:29
To that, I added an alias to ~/.bash_profile:
alias ios="open /Applications/Xcode.app/Contents/Developer/Applications/iOS Simulator.app"
which lets me just run ios
from the command line.– ghayes
Mar 3 '15 at 18:29
1
1
FYI, on my machine the application is just
Simulator.app
not iOS Simulator.app
.– Joshua Pinter
Feb 12 '17 at 20:51
FYI, on my machine the application is just
Simulator.app
not iOS Simulator.app
.– Joshua Pinter
Feb 12 '17 at 20:51
add a comment |
up vote
2
down vote
For Xcode 7.2
open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app/Contents/MacOS/Simulator.app
sudo ./Simulator
And adding this path in your profile is the best way.
add a comment |
up vote
2
down vote
For Xcode 7.2
open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app/Contents/MacOS/Simulator.app
sudo ./Simulator
And adding this path in your profile is the best way.
add a comment |
up vote
2
down vote
up vote
2
down vote
For Xcode 7.2
open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app/Contents/MacOS/Simulator.app
sudo ./Simulator
And adding this path in your profile is the best way.
For Xcode 7.2
open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app/Contents/MacOS/Simulator.app
sudo ./Simulator
And adding this path in your profile is the best way.
answered Apr 22 '16 at 5:53
Dheeraj Gupta
241419
241419
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f5048524%2fcan-i-start-the-iphone-simulator-without-build-and-run%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown