Can I start the iPhone simulator without “Build and Run”?











up vote
114
down vote

favorite
21












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.










share|improve this question


























    up vote
    114
    down vote

    favorite
    21












    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.










    share|improve this question
























      up vote
      114
      down vote

      favorite
      21









      up vote
      114
      down vote

      favorite
      21






      21





      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.










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Feb 19 '11 at 2:52









      RobertL

      4,736103238




      4,736103238
























          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:



          open iOS Simulator





          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.






          share|improve this answer



















          • 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






          • 1




            Thank you - the open 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


















          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/







          share|improve this answer




























            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.






            share|improve this answer



















            • 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






            • 3




              xcode 7.2.1, use "open -a Simulator".
              – AnneTheAgile
              Feb 16 '16 at 15:36


















            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.






            share|improve this answer




























              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/






              share|improve this answer




























                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.






                share|improve this answer

















                • 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




















                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.








                share|improve this answer




























                  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 Dockenter image description here






                  share|improve this answer




























                    up vote
                    3
                    down vote













                    Without opening Xcode:



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





                    share|improve this answer

















                    • 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






                    • 1




                      FYI, on my machine the application is just Simulator.app not iOS Simulator.app.
                      – Joshua Pinter
                      Feb 12 '17 at 20:51


















                    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.






                    share|improve this answer





















                      Your Answer






                      StackExchange.ifUsing("editor", function () {
                      StackExchange.using("externalEditor", function () {
                      StackExchange.using("snippets", function () {
                      StackExchange.snippets.init();
                      });
                      });
                      }, "code-snippets");

                      StackExchange.ready(function() {
                      var channelOptions = {
                      tags: "".split(" "),
                      id: "1"
                      };
                      initTagRenderer("".split(" "), "".split(" "), channelOptions);

                      StackExchange.using("externalEditor", function() {
                      // Have to fire editor after snippets, if snippets enabled
                      if (StackExchange.settings.snippets.snippetsEnabled) {
                      StackExchange.using("snippets", function() {
                      createEditor();
                      });
                      }
                      else {
                      createEditor();
                      }
                      });

                      function createEditor() {
                      StackExchange.prepareEditor({
                      heartbeatType: 'answer',
                      convertImagesToLinks: true,
                      noModals: true,
                      showLowRepImageUploadWarning: true,
                      reputationToPostImages: 10,
                      bindNavPrevention: true,
                      postfix: "",
                      imageUploader: {
                      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                      allowUrls: true
                      },
                      onDemand: true,
                      discardSelector: ".discard-answer"
                      ,immediatelyShowMarkdownHelp:true
                      });


                      }
                      });














                       

                      draft saved


                      draft discarded


















                      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

























                      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:



                      open iOS Simulator





                      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.






                      share|improve this answer



















                      • 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






                      • 1




                        Thank you - the open 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















                      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:



                      open iOS Simulator





                      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.






                      share|improve this answer



















                      • 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






                      • 1




                        Thank you - the open 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













                      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:



                      open iOS Simulator





                      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.






                      share|improve this answer














                      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:



                      open iOS Simulator





                      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.







                      share|improve this answer














                      share|improve this answer



                      share|improve this answer








                      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 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




                        Thank you - the open 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




                        @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




                        Thank you - the open 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












                      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/







                      share|improve this answer

























                        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/







                        share|improve this answer























                          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/







                          share|improve this answer












                          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/








                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Apr 17 '12 at 10:12









                          inta

                          56021116




                          56021116






















                              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.






                              share|improve this answer



















                              • 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






                              • 3




                                xcode 7.2.1, use "open -a Simulator".
                                – AnneTheAgile
                                Feb 16 '16 at 15:36















                              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.






                              share|improve this answer



















                              • 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






                              • 3




                                xcode 7.2.1, use "open -a Simulator".
                                – AnneTheAgile
                                Feb 16 '16 at 15:36













                              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.






                              share|improve this answer














                              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.







                              share|improve this answer














                              share|improve this answer



                              share|improve this answer








                              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 with iOS 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




                                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




                                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










                              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.






                              share|improve this answer

























                                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.






                                share|improve this answer























                                  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.






                                  share|improve this answer












                                  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.







                                  share|improve this answer












                                  share|improve this answer



                                  share|improve this answer










                                  answered Jun 12 '12 at 10:05









                                  user1450909

                                  24123




                                  24123






















                                      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/






                                      share|improve this answer

























                                        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/






                                        share|improve this answer























                                          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/






                                          share|improve this answer












                                          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/







                                          share|improve this answer












                                          share|improve this answer



                                          share|improve this answer










                                          answered Mar 27 '12 at 15:41









                                          jimbojw

                                          9,14352439




                                          9,14352439






















                                              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.






                                              share|improve this answer

















                                              • 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

















                                              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.






                                              share|improve this answer

















                                              • 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















                                              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.






                                              share|improve this answer












                                              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.







                                              share|improve this answer












                                              share|improve this answer



                                              share|improve this answer










                                              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
















                                              • 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












                                              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.








                                              share|improve this answer

























                                                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.








                                                share|improve this answer























                                                  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.








                                                  share|improve this answer












                                                  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.









                                                  share|improve this answer












                                                  share|improve this answer



                                                  share|improve this answer










                                                  answered Nov 13 '15 at 3:56









                                                  Jaybo

                                                  637710




                                                  637710






















                                                      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 Dockenter image description here






                                                      share|improve this answer

























                                                        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 Dockenter image description here






                                                        share|improve this answer























                                                          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 Dockenter image description here






                                                          share|improve this answer












                                                          The easiest way is start the simulator from the Xcode, and then on the dock, Ctrl + Click on the icon and select Keep in Dockenter image description here







                                                          share|improve this answer












                                                          share|improve this answer



                                                          share|improve this answer










                                                          answered Sep 26 '14 at 1:56









                                                          Thai Tran

                                                          7,50463351




                                                          7,50463351






















                                                              up vote
                                                              3
                                                              down vote













                                                              Without opening Xcode:



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





                                                              share|improve this answer

















                                                              • 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






                                                              • 1




                                                                FYI, on my machine the application is just Simulator.app not iOS Simulator.app.
                                                                – Joshua Pinter
                                                                Feb 12 '17 at 20:51















                                                              up vote
                                                              3
                                                              down vote













                                                              Without opening Xcode:



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





                                                              share|improve this answer

















                                                              • 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






                                                              • 1




                                                                FYI, on my machine the application is just Simulator.app not iOS Simulator.app.
                                                                – Joshua Pinter
                                                                Feb 12 '17 at 20:51













                                                              up vote
                                                              3
                                                              down vote










                                                              up vote
                                                              3
                                                              down vote









                                                              Without opening Xcode:



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





                                                              share|improve this answer












                                                              Without opening Xcode:



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






                                                              share|improve this answer












                                                              share|improve this answer



                                                              share|improve this answer










                                                              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 run ios from the command line.
                                                                – ghayes
                                                                Mar 3 '15 at 18:29






                                                              • 1




                                                                FYI, on my machine the application is just Simulator.app not iOS Simulator.app.
                                                                – Joshua Pinter
                                                                Feb 12 '17 at 20:51














                                                              • 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






                                                              • 1




                                                                FYI, on my machine the application is just Simulator.app not iOS 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










                                                              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.






                                                              share|improve this answer

























                                                                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.






                                                                share|improve this answer























                                                                  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.






                                                                  share|improve this answer












                                                                  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.







                                                                  share|improve this answer












                                                                  share|improve this answer



                                                                  share|improve this answer










                                                                  answered Apr 22 '16 at 5:53









                                                                  Dheeraj Gupta

                                                                  241419




                                                                  241419






























                                                                       

                                                                      draft saved


                                                                      draft discarded



















































                                                                       


                                                                      draft saved


                                                                      draft discarded














                                                                      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





















































                                                                      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







                                                                      Popular posts from this blog

                                                                      Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

                                                                      Does disintegrating a polymorphed enemy still kill it after the 2018 errata?

                                                                      A Topological Invariant for $pi_3(U(n))$