¡@

Home 

2014/10/15 ¤U¤È 10:03:47

iphone Programming Glossary: applicationdidfinishlaunching..

App “failed to resume in time” and hangs

http://stackoverflow.com/questions/7822988/app-failed-to-resume-in-time-and-hangs

see a 0x8badf00d that means you are getting killed by the launch watchdog. Your app is taking too long to return from applicationDidFinishLaunching... . Normal Core Data related causes to this are Trying to import data in the applicationDidFinishLaunching... Trying to perform.. from applicationDidFinishLaunching... . Normal Core Data related causes to this are Trying to import data in the applicationDidFinishLaunching... Trying to perform a migration from applicationDidFinishLaunching... To solve this you need to change your start up. The.. causes to this are Trying to import data in the applicationDidFinishLaunching... Trying to perform a migration from applicationDidFinishLaunching... To solve this you need to change your start up. The creating of the Core Data stack should never be done in the applicationDidFinishLaunching.....