Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Within the iOS Simulator, is it possible to access the App Store?

That is, can I install the App Store application within the Simulator and download applications through it to the iOS Simulator? If so, how?

share|improve this question
2  
You can only run things on the simulator that either Apple provides with the SDK (e.g. Settings & photo library), or your own compiled apps. You can't install things from the store into the simulator. – Michael Dautermann Nov 15 '11 at 14:25
@MichaelDautermann - you should post that as the answer – jrturton Nov 15 '11 at 14:26
can't... somebody else already did (so I'm voting it up) – Michael Dautermann Nov 15 '11 at 14:26

2 Answers

up vote 12 down vote accepted

It's a simulator not an emulator. Even if there was an App Store in the Simulator, none of the apps in the store would work since they are compiled for ARM CPUs while the Simulator runs x86 code.

share|improve this answer
whats the difference between Simulator and Emulator? – John Riselvato May 31 '12 at 20:44
1  
@JohnRiselvato In this case, the Simulator looks like iOS from the API point of view (though without 100% coverage) but is not binary compatible. An emulator would, at the very least, be binary compatible. – Stephen Darlington Jun 1 '12 at 7:31

Sorry it is not available! The simulator will only allow you to install programs from xCode. I am not sure why they restrict this - but I am also not sure why you would want to use the Simulator for this purpose.

share|improve this answer
I want to check the installed applications on iphone, so I had to have some installed applications on SDK. – Alaa Eldin Nov 15 '11 at 14:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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