vote up 6 vote down star
3

Ever language has their famous and painfull errors. I will be fun to learn which errors earn this reputation when developing for the iPhone.

Please list yours!

I agree with GenericTypeTea If you can please list the error code/message and the cause to make for a more useful post.

flag

1  
How about listing the error code/message and the cause? Might make for a more useful post. – GenericTypeTea Jul 7 at 18:19
1  
I like real questions. Not those subjective questions that should not be asked (cf. stackoverflow.com/faq)... – Burkhard Jul 7 at 18:23
@Burkhard: I do agree. I wonder what purpose these questions have. Do they help anyone to program better? Do they solve a problem? Probably, they only serve to ask a question and maybe gain a few Reps. – Healthcarel Jul 7 at 18:26
1  
I like real questions too. However after struggling for hours it is nice to connect with a community that shares your pain and pleasure. – Jamey McElveen Jul 7 at 18:26
1  
It would be nice if we had a separate place on stackoverflow.com to connect with the community. – Jamey McElveen Jul 7 at 18:30
show 1 more comment

closed as not a real question by Burkhard, Cade Roux, Steven A. Lowe, Marc Gravell Jul 8 at 7:33

9 Answers

vote up 6 vote down check

I particularly hate this error.

Thank you for submitting [application name here] to the App Store. We've reviewed the application and, consistent with the criteria in our approval process, we have chosen not to publish this application. As you know Apple reserves the right, in its sole discretion, to reject an application for any reason.

link|flag
1  
This error never occurred to me. Nevertheless +1 because I'm so afraid of it. – Nikolai Ruhe Jul 7 at 19:56
vote up 0 vote down

I love it and hate it that you can send messages to nil objects. I love it because you don't have to check for nil everywhere. I hate it because sometimes you're looking for that error for hours when all you do is send a message to a nil object. In that case an error would have been nice

link|flag
vote up 0 vote down

I despise the error about "gcc exited with status code 1" and no other information.

link|flag
vote up 1 vote down

My most-hated error is when you download sample code to check something out, go to run it, and realize it's set to run on the device when you haven't changed the bundle identifier and the code isn't signed.

link|flag
vote up 2 vote down

Sending autorelease to an object you do not own, the app crashes with a EXC_BAD_ACCESS and you have no clue when did the object get released.

link|flag
vote up 8 vote down

Any error that has to do with code signing.

link|flag
This has improved in xcode 3.1.3, but I hate the amount of time I lose per day waiting for code signing. – Rhythmic Fistman Jul 7 at 19:05
vote up 1 vote down

I would say that the most frustrating error is actually the error that never happens. E.g. when you have an IBOutlet that has not been properly "plugged in", rather then getting a NullPointerException or some such, the code just silently does nothing. Why does sending a message to a "null" object not throw an exception? Grr....

link|flag
4  
Because the gain you get from not having to check for nil values everywhere (see: Java) is far vaster than the occasional misstep you get from having a message go to a nil object when you were expecting an object to be present. In consumer application development, code that keeps running is always preferred to code that crashes... – Kendall Helmstetter Gelner Jul 7 at 19:04
I could not disagree more. My development time is far more precious than the few nanoseconds it takes the JVM to detect a null reference. – Kaffeine Coma Jul 7 at 19:10
Of course, it's Objective-C (more so than a JVM) that's taking the few extra nanoseconds to detect nils in order to special case that situation. – Daniel Dickison Jul 7 at 20:31
Not having to check for nils everywhere saves a tremendous amount of code and development time. If you truly want to guarantee that your IBOutlets are connected, I've found that using assert(yourOutlet != nil) for each outlet within awakeFromNib or similar does a good job of testing these. – Brad Larson Jul 7 at 20:38
I save way more developer time not having to check for nil, and to make use of that ability to intelligently write code that relies on passing messages to nil being OK, than I ever would from having an accidental nil reference cause an issue. Remember that Objective-C is at the core a message passing language, and not really C. I've been writing apps for the iPhone full time for over a year now and I have only had an object being nil cause an issue TWICE and both times were simple UI issues where something failed to show or an action failed to trigger, which I fixed in about a minute. – Kendall Helmstetter Gelner Jul 8 at 5:39
show 1 more comment
vote up 6 vote down

I hate all the device sync errors like

"iTunes could not connect to iPhone because an unknown error occurred (0xE8000025)"

Oh the humanity.

link|flag
vote up 5 vote down

I hate this one EXC_BAD_ACCESS (sometimes called EXEC_BAD_ACCESS)

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.