Why does Xcode, after updating to SDK 4.2, always run my application in iPad Simulator instead of iPhone??? If I select iPhone Simulator as active executable it doesn't store my preference and runs the iPad simulator after any new Build & Run.

link|improve this question

2  
Are you sure it is the iPad simulator and not the retina simulator? Just wondering. – Kevin Sylvestre Nov 29 '10 at 23:36
I haven't tried the 4.2, but a few months ago I ran into something where if I chose 3.2.2 as the target OS it always launched the iPad, and if I did 4.0 for the OS it always did the iPhone simulator – Chris Nov 29 '10 at 23:50
lol. i have exactly the opposite problem. iphone sim is always started. – Matthias Bauch Nov 30 '10 at 0:14
Yes Kevin, it's the iPad Simulator wwith the possibility to scale 2x my app. Chris, iOS deployment target is 4.0. – massimoperi Nov 30 '10 at 6:45
similar question here: stackoverflow.com/questions/4322279/… – neoneye Mar 12 '11 at 19:06
show 1 more comment
feedback

7 Answers

I had the same Problem. But suddenly after an Update it disappeared. Do you have the newest Version of all Software( or tried turning it off and on again)?

If that doesn't works, I would suggest a reinstall. Solved many of my Problems...

link|improve this answer
Now I'm running Xcode 4 and the problem disappeared. – massimoperi Apr 13 '11 at 6:44
feedback

Check the Active Executable setting, as well as the Simulator's setting for "Device."

link|improve this answer
I manually set... Active SDK: iOS Simulator 4.2 Active Executable: iPhone Simulator 4.2 Everything runs fine, but if I close Xcode and restart it, automatically switchs back to iPad Simulator 4.2. – massimoperi Nov 30 '10 at 6:47
Same with me. After restarting Xcode it switches back to iPad Simulator 4.3. – DonnaLea Apr 7 '11 at 6:02
Ouch, Xcode 4 is not giving me any problem anymore... but I guess you're on Xcode 4, so I should be afraid of it. – massimoperi Apr 9 '11 at 0:04
feedback

Check your .xcodeproj info. Navigate yourself in there and locate Simulator's Settings and choose 'iPhone' or 'iPad'

Hope this helps

link|improve this answer
Sorry, but I can't find the Simulator's setting in the project info pane. – massimoperi Nov 30 '10 at 6:51
how about the target <project name>.app? I only seen the xcode 4.2 once and never gotten to play with it since then. – Melvin Lai Nov 30 '10 at 9:55
neither here... – massimoperi Nov 30 '10 at 21:59
feedback

Removing all iPad devices from the device list in the organizer (Window Menu > Organizer) fixed it for me. But i know that's not a perfect solution. I hope Apple will fix this soon.

link|improve this answer
feedback

Try to Build -> 'Clean All Targets'. Go into Release configuration, compile and then back to Debug. Now you can choose Iphone Simulator. For me it works.

Hope this help.

link|improve this answer
no, it doesn't work for me – massimoperi Jan 18 '11 at 7:18
feedback

do yo have two xcode (or iphone sdk) installation on your machine? if yes then completely uninstall the xcode using this command -

sudo /Developer/Library/uninstall-devtools –mode=all

from all the locations (replace Developer with installed directory name)

and install the xcode 3.2.6 in developer directory

link|improve this answer
No, I only had Xcode 3.2. – massimoperi Apr 15 '11 at 5:59
feedback

On XCode 3.2.6, you can go to "Project" menu -> "Set Active Executable" and select iPhone Simulator.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.