views:

67

answers:

3

I have only started getting this error.

The application works perfectly when working on the iPhone simulator, and there are now errors like the one above.

The application is being put on a 3.0 iPhone if that is any help.

A: 

Is this in the XCode Debugger console?

You could be running the Release version.
Only the Debug build can pipe stdout/stderr back to XCode.

Rhythmic Fistman
+1  A: 

Have you rebooted? I think you need to restart XCode and maybe even power off and back on your iPhone device.

I frequently (well, pretty frequently at least) have weird connectivity issues between XCode and my iPhone and rebooting the phone (power off, back on) will generally solve these.

marcc
A: 

Check that all paths in your project don't contain '#' simbol. for example, my project at this path: "/User/alex/Projects/prj_MMH/branches/#19/" causes same error.

xzDeveloper