How do you set the default device in the iPhone simulator?
Every time I switch Xcode between debugging on my iPhone and running in the simulator it resets the simulated device. I want to run the simulator as an iPhone device, but it keeps changing back to iPad. Does anyone know how to set the configuration so that the simulator defaults to an iPhone device?
I can switch the hardware to iPhone inside the Simulator, but when I go back to Xcode and run开发者_Python百科 a "Build Debug" it reopens the app inside an iPad. The only way I can get it to switch is by using the Overview menu in Xcode, the choices I see are iPad Simulator 3.2 and iPhone Simulator 4.0
And when I switch between device and simulator then it always goes back to iPad.
I got XCode 4 to launch the iPhone simulator instead of the iPad simulator by doing this:
- In the "Product" menu, pick "Edit Scheme".
- Single-Click "Run *Your_Project_Name* Debug" from the list on the left of the scheme editing window.
- At the top of the window notice that the pull-down above "Destination" is set to "iPad 4.3 Simulator".
- Change the pull-down to "iPhone 4.3 Simulator".
- Click "OK".
In Xcode 9 you can select multiple devices. However an easy way to default to your favorite device is the following:
- Choose your device from simulator-hardware-device-os you are working on
- Now go to simulators - windows and turn off “ show device bezel”
- Now simply close the ones you don’t want
What is the Base SDK set to in your project (General tab)? If it's not 4.0 then I think it may assume you are writing an iPad app.
If you set it to 3.2 wanting to support iOS 3.x, you need to set the base SDK to 4.0, then go into project build settings tab and change the OS Deployment target to 3.1 (or whatever the earliest version is you want to support).
In the iPhone Simulator, go to Hardware>Device, and select "iPhone". Whatever you choose there is automatically saved.
in iOS simulator go to :
File / Open Device / iOS 'versión' in my case (iOS 13.7) / Select the one you need
next time you open the simulator will be open with the device selected.
had the same problem - that is how i found this thread.
in SDK 4.2
make sure that when you open the a new xcode project you choose Product = 'iPhone'
- the default selection is Ipad. Then when you save the project the device settings are saved with it.
精彩评论