views:

116

answers:

1

Hello all !

I really have a problem right now. I am developing an IAP-App and just updated my iPad to 3.2.1 so i needed to install the new XCode 3.2.3.

Everything runs fine but at exit (pressing Home-Button) i get following errors:

Wed Aug 4 22:53:23 iPad com.apple.launchd[1] (UIKitApplication:com.mypad.storetest[0x1c2][75]) : (UIKitApplication:digital-sylvia.storetest[0x1c2]) Bug: launchd_core_logic.c:2650 (24063):10

Wed Aug 4 22:53:23 iPad com.apple.launchd[1] (UIKitApplication:com.mypad.storetest[0x1c2][75]) : (UIKitApplication:digital-sylvia.storetest[0x1c2]) Working around 5020256. Assuming the job crashed.

Wed Aug 4 22:53:23 iPad com.apple.launchd[1] (UIKitApplication:com.mypad.storetest[0x1c2][75]) : (UIKitApplication:com.mypad.storetest[0x1c2]) Job appears to have crashed: Segmentation fault

Wed Aug 4 22:53:23 iPad SpringBoard[27] : Application 'StoreTestV2' exited abnormally with signal 11: Segmentation fault

Wed Aug 4 22:53:23 iPad com.apple.debugserver-44[74] : 1 [004a/1703]: error: ::read ( 6, 0x2809f4, 1024 ) => -1 err = Bad file descriptor (0x00000009)

I really don't know what else to do. Reinstalled XCode, remade certiificate and prov-files, cleaned target and cache. The Errors are still there.

Where to search for the error ? Is it an error at my side ?

+1  A: 

Can we see your - (void)applicationWillTerminate:(UIApplication *)application method? or anything else you run when your application exits?

pop850
HelloIt is default code.<code>- (void)applicationWillTerminate:(UIApplication *)application { /* Called when the application is about to terminate. See also applicationDidEnterBackground:. */}</code>Untouched.
Alex
Some more informations: Also a clean Project without any changes result the same error.Maybe my iPad goes crazy ?
Alex
It looks like "Segmentation fault" is memory-related, but if you get this error with a clean project, what you should do is run your app on the iPad simulator (by setting the version to 3.2). If you get errors there, it's something with your project configurations. If not, your iPad is, as you said, "crazy."
pop850
Well, with the simulator i don't get any errors. The errors i get from the Organizer Console (not the debugger console).In the Debugger Console everything is fine.
Alex
You could try a restore of the iPad, or removing its provisioning profile and applying it again… but that's all I could recommend...
pop850
Thank you.It is maybe just an XCode bug. Already found a few threads about this error.
Alex