Any suggestions as to why the app will launch and quickly disappear from the dock? It's a very small app with about 80 lines of code and no outside API's, libraries, or dependencies. A simple countdown app created in about an hour.
Asked
Active
Viewed 57 times
0
-
Is your friend's computer running the same OS version? You may have to check your build settings if not. – David Mar 14 '11 at 04:10
2 Answers
1
Have your friend run it from the Terminal window (ie ./MyApp.app/Contents/MacOS/MyApp ) and see if it prints out any helpful error message to stdout.

Jeremy Friesner
- 70,199
- 15
- 131
- 234
-
Hmm, in that case it may be a problem in the application's logic. What I would do next is put a printf() (or equivalent) at the top of main(), and see if it gets printed when he runs the (recompiled) program. If so, then your application is exiting for some reason. – Jeremy Friesner Mar 15 '11 at 00:18
0
Check the settings in info of the project. Check the product Name in target and project. And also check the "set Active target" and "set Active SDK"(Simulator).
This should work.

DivineDesert
- 6,924
- 1
- 29
- 61