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.

I am new here,

I am facing a problem in my iPhone application

at runtime, my application closes automatically without any warning or error

please give me reason for this and it's solution

share|improve this question
1  
We can't give you a reason because, as you stated, there are no warnings. Try to see if there are any crash logs on the device for the app. – rckoenes Jun 12 '12 at 13:16

closed as not a real question by Tim Post Jun 17 '12 at 13:47

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

5 Answers

go to xcode menu product>edit schems>enable zombi objects

and then see if error appears

share|improve this answer
thank you for answering but the problem is not solved.. – Pratik Patel Jun 12 '12 at 13:13
did this work ? – The Saad Jun 12 '12 at 13:13
same problem occured – Pratik Patel Jun 12 '12 at 13:15
tell me the detail when it happens i.e against wht evet – The Saad Jun 12 '12 at 13:26
app terminate without any error or warning in middle or running – Pratik Patel Jun 13 '12 at 5:02
show 1 more comment

Open your MacBook Console, and see the error what you did in your application...

Go to Application folder in your mac ---> Utilities --> Console

share|improve this answer

I recommend to you put different breakpoints & nslogs to detect the zone of code where error occurs and try to determine it.

Also you can analyze your app with instruments (xCode -> Open developer Tool -> Instruments).

enter image description here

share|improve this answer

I suggest you go though this tutorial for full understanding on how to debug and solve your app problems when it crashes.

share|improve this answer

When did this happen? I mean, did it happen when you launch your app or in the middle of running?

What happens is your app got shut down by iOS system. If that happens in the middle of running, you are very likely got serious memory leaks. I recommend you use instruments to find your leaks and fix them.

If you cannot even run your app, then I suggest you to remove the things you load at the app launch time or main view load time step by step and figure out what exactly cause the crash.

share|improve this answer
i got problem in middle of running – Pratik Patel Jun 13 '12 at 5:01
Then I would say you very likely got serious memory leaks. What I suggest you to do is in xcode, analyze your code first to find the places could cause leaks and fix them. After that, use leaks from instruments and find out what's going on. Instruments will show you exactly what are the objects and line of code that cause the leak. Let me know if you need more help. You also wanna try to replicate the situation caused crash. If you can find exactly where the app got crashed, you should be able to find the exact line. Set a break point and find out why. – Raymond Wang Jun 13 '12 at 18:50
but in simulator it is working properly. – Pratik Patel Jun 14 '12 at 5:15
simulator is different from a device, and you should test on device before you send to apple anyway – Raymond Wang Jun 14 '12 at 13:40

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