Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I run iPhone simulator over full-screen(lion) Xcode 4.1?

Tags:

xcode

osx-lion

I love to work with full-screen mode Xcode, but there's one inconvenience,

If I run iPhone simulator, it is shown in other space.

Is there any way to run iPhone simulator over full-screen Xcode?

If then, I can work with happiness really!

like image 768
moon6pence Avatar asked Jul 25 '11 19:07

moon6pence


People also ask

How do I make iOS simulator always on top?

To make your app window “Always on Top,” click on the “Window” option in the menu and select “Keep Afloat.”

How do I show simulator in Xcode?

The basic way to open a list of simulators is to use Xcode -> Window -> Devices and Simulators. Here you can create and manage all available simulators.

What are the two ways to access iOS simulator in Xcode?

There are two different ways to access Simulator through Xcode. The first way is to run your app in Simulator, and the second way is to launch Simulator without running an app.

Can you run iOS simulator without Xcode?

Now with new Xcode if the icon of the Xcode is on dock you can just right click it and form the menu you can select Open Developer Tool and in the sub menu you can select the iOS Simulator to open the simulator without opening the Xcode.!


3 Answers

There doesn't seem to be any way to do this. I think part of the idea of having a full-screen mode is that you cannot have any other windows open on top of the full-screen window.

Try opening Xcode in full-screen mode, then open the organizer window, and you'll see what I mean. The organizer opens in its own full-screen mode space.

Which makes sense, even though it's inconvenient in this case. I think if Apple were to give the iOS simulator its own full-screen mode, that would be nicer than just throwing it up on a desktop.

It seems like the ideal solution would be for Apple to integrate the iOS simulator into the Xcode debugging environment, similar to what they did with Interface Builder in Xcode 4.

like image 120
todd412 Avatar answered Nov 17 '22 01:11

todd412


As others point out, Apple doesn't allow to run two full screen apps one over the other one. However, you could put them next to each other like this which already is an enhancement (at least for me):

enter image description here

I use VS Code instead of Xcode but the logic is the same. All you have to do is just to allow iOS Simulator to run in Full Screen by running the following command in terminal:

defaults write com.apple.iphonesimulator AllowFullscreenMode -bool YES
like image 45
Tomas Baran Avatar answered Nov 16 '22 23:11

Tomas Baran


To run simulators in full-screen mode, you need to enable fullscreen mode by executing the following command in your terminal:

defaults write com.apple.iphonesimulator AllowFullscreenMode -bool YES

*You need to restart the simulator in order to reflect the changes.

like image 36
shan kulkarni Avatar answered Nov 16 '22 23:11

shan kulkarni