Program received signal: “0”.
warning: check_safe_call: could not restore current frame
What is this error?
Is there a testing device for the iphone app to know which program element is taking the resources to make the app crash?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You might want to look at the Object Allocations tool in instruments. This gives you a quick overview over what type of Objects you are allocating and also provides you with a history of what methods are responsible for the creation of those objects. It also shows you if those objects get deallocated again, by looking at the difference between living and transatory objects you might be able to spot some leaks.
Another method would be to check the Activity Monitor and to have a look at the development of the memory over time and what features of your app have the largest impact on it.
You can run these tools from Xcode using Run -> Run with performance tool