Is there any way if my iphone app can detect if the user is trying to sync the iphone device when the app runs? My app crashes a lot when this syncing occurs…
Share
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.
Your App Delegate receives a
applicationWillResignActive:call, nothing more. You can’t be sure if its because of syncing or because your user got a call.About the crashes, make sure that you respond to memory warnings by freeing up as much memory as possible for the system, this should solve the problem in 99% of the cases.