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
|
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.
|
go to xcode menu product>edit schems>enable zombi objects and then see if error appears |
|||||||||||
|
|
|
Open your MacBook Console, and see the error what you did in your application... Go to Application folder in your mac ---> Utilities --> Console |
|||
|
|
|
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).
|
|||
|
|
|
I suggest you go though this tutorial for full understanding on how to debug and solve your app problems when it crashes. |
|||
|
|
|
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. |
|||||||||
|