Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode run button disappearing

Tags:

xcode

button

ios

I have a problem with Xcode 7.1.1. The upper part of the UI (the container of the run button, manage scheme etc.) keeps disappearing when I close another opened project. If I have two project opened, closing one, the problem occcurs. I can't bring it back, the only option that I have is to close Xcode and open it again. Here's some screenshot of the page and the view menu. The toolbar is visible, you can see it in the second and third screenshot, but its content it's hidden. Anyone having the same problem or some solutions?

enter image description here

enter image description here

enter image description here

like image 926
LorenzOliveto Avatar asked Nov 17 '15 10:11

LorenzOliveto


People also ask

How do I show the Run button in XCode?

Click the Run button in the top left or press Command + R. From the moment the application is up and running, we can start inspecting the process and, if necessary, debug it.

Why is run button greyed out in XCode?

The run button at the bottom of the IDE that displays/hides the run console should have it's green arrow greyed out if there are no currently running programs.

How do I run code in XCode?

To compile and run your program, click the run button in the top left corner of the window. When your program runs, XCode will open an output pane. You can see any output that your program generated in that pane.


2 Answers

XCode will open the project with the interface configured the same way as the last file that was opened. If your interface is opening with the toolbar and project navigator minimized it means that you double clicked a file and opened it in its own window. XCode thinks that this was the last file opened so it uses this as the default.

To resolve right click on the top of the window and selecting "show toolbar" enter image description here

You can also hide same way by right clicking and hide toolbar. enter image description here

like image 196
Imran Avatar answered Oct 29 '22 02:10

Imran


Keyboard shorcut: cmd + alt + T Or in the menu: View>Show Toolbar

like image 23
al_mota Avatar answered Oct 29 '22 02:10

al_mota