I have a mySample.app file - an iPhone application developed by xcode.

How do I run this (only mySample.app file) application using my xcode?

link|improve this question
feedback

4 Answers

I have just found that you don't need to copy the mobile application bundle to the iPhone Simulator's folder to start it on the simulator, as described in the forum. That way you need to click on the app to get it started, not confortable when you want to do testing and start the app numerous times.

There are undocumented command line parameters for the iOS Simulator, which can be used for such purposes. The one you are looking for is: -SimulateApplication

An example command line starting up YourFavouriteApp:

/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app/Contents/MacOS/iPhone\ Simulator -SimulateApplication path_to_your_app/YourFavouriteApp.app/YourFavouriteApp

This will start up your application without any installation and works with iOS Simulator 4.2 at least. You cannot reach the home menu, though.

There are other unpublished command line parameters, like switching the SDK. Happy hunting for those...

link|improve this answer
That is just great ! Thank you ! Do you know if there's an argument to also install the application in the simulator ? – David Feb 8 '11 at 8:45
Unfortunately, this solution has its limitations: you cannot configure the application, and the preadjusted settings won't affect the run, doesn't matter whether you specified the exact preinstalled application for the simulation or not. The possible command line arguments, what I have found so far: SimulateDevice, SimulateRestart, SessionOnLaunch, currentSDKRoot - there might be others, though. – racs Feb 8 '11 at 20:48
strings /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app/Contents/MacOS/iPhone\ Simulator gives the follow nearby SimulateApplication: * LocationLongitude * LocationLatitude * LocationMode * StayInFront * windowOrientation * SessionOnLaunch * SimulateRestart * MobileSafari * Safari * SimulateDevice * SimulateApplication * LocationScenario – sj26 Feb 8 at 6:46
It this method still working for Xcode 4.3 and iOS 5? I encountered this problem using it: skitch.com/an00na/8dj8r/simulator. – an0 Feb 21 at 1:29
1  
I still get it to work with 4.3.1. Although I did get this error when I used the path to the .app bundle instead of the executable within the bundle (i.e. foo.app/foo ). – gaige Mar 15 at 12:32
show 1 more comment
feedback

This thread discusses how to install the binary on the simulator. I've done it and it works: http://forums.macrumors.com/showthread.php?t=547557

link|improve this answer
feedback

Select the platform to be iPhone Simulator then click Build and Go. If it builds correctly then it will launch the simulator and run. If it does not build ok then it will indicate errors at the bottom of the window on the right hand side.

If you only have the app file then you would need to manually install that into the simulator. The simulator was not designed to be used this way, but I'm sure it would be possible, even if it was incredibly difficult.

If you have the source code (.proj .m .h etc) files then it should be a simple case of build and go.

link|improve this answer
It builds fine for me and gives me the error "Failed to launch simulated application: Unknown error.". It starts the simulator in iPad mode with a blank screen. When I switch to home screen, it doesn't show my app. – Albert Jul 25 '10 at 18:09
feedback

I see you have a problem. Try building your app as Release and then check out your source codes build folder. It may be called Release-iphonesimulator. Inside here will be the app. Then go to (home folder)/Library/Application Support/iPhone Simulator (if you can't find it, try pressing Command - J and choosing arrange by name). Go to an OS that has apps in it in the iPhone sim, like 4.1. In that folder there should be an Applications folder. Open that, and there should be folders with random lettering. Pick any one, and replace it with the app you have. Make sure to delete anything in the little folders!

If it doesn't work, then I'm dumbfounded.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown