vote up 11 vote down star
15

What are those bad habits you've developed since you've started coding in Cocoa?

I think making a list of bad habits and actively adding to it and, more importantly, breaking those habits is a good technique to produce your code quality. So start now, get your bad habits off your chest. Maybe other people share your bad habits.

flag

80% accept rate

13 Answers

vote up 10 vote down

Passing nil to arguments that call for NSError**, pure lazy.

link|flag
vote up 7 vote down

Using exceptions for control flow

(And other non-exceptional circumstances.)

Since use of exceptions is brought up in another answer here and the documentation referred to in the comments does not stress this point particularly, it is worth emphasising that exceptions should now be used for normal control flow (as is common in some other environments). Exceptions in Cocoa are comparatively extremely expensive. If you want to communicate an error, use an NSError object and the error-handling architecture provided by Cocoa. Don't throw exceptions.

link|flag
The typo reverses the meaning. Instead of "exceptions should now be used", I think it was meant to be "exceptions should not be used". – Rob Sep 16 at 7:26
vote up 6 vote down

Not unit testing enough. It's really difficult to clean up and refactor code if you don't have unit tests. And without constant refactoring and cleaning, code rot begins to set in and spread.

Using the singleton pattern to share objects, like +[MyObject defaultObject]. This is essentially a global variable that makes for some nice hidden dependencies and coupling. This, in turn, makes code harder to test.

link|flag
N-ing the singleton pattern. I'm an abuser too. – schwa Oct 17 '08 at 15:36
-1 Because both of those are problems in any OO language. – Outlaw Programmer Jan 24 at 20:26
vote up 5 vote down

I get lazy about using accessors inside of classes. Usually, the biggest problem is that I can't easily tell the scope of the variable at a quick glance. Then I spent a few hours last week debugging a memory corruption issues that was due to using

self.displayName = name

in some places and

displayName = name

in others. I was happy when I found it and my app stopped crashing. I wasn't so happy that I wasted several hours looking for such an avoidable mistake.

link|flag
This is avoidable if, as many people suggest you shouldn't, you @synthesize displayName = _displayName, and then NEVER use _displayName. It's a code-smell tactic. – dlamblin Jul 1 at 19:04
vote up 4 vote down

Here's some of mine:

Throwing exceptions without any attempt to catch 'em. I've started to rely on NSError more and more to prevent NSExceptions from flying about like bullets in a John Woo movie, but I still have a lot of exceptional code out there.

Writing a quick class to do X, Y & Z and then forgetting to clean up in dealloc. Leaks ahoy!

Using strings directly in various places (KVO) instead of defining a constant and using that (see Dave Dribin's excellent blog post on KVO for more)

link|flag
1  
One thing I really like about Cocoa's design is that NSExceptions are defined to be used only for programmer error (like an out-of-bounds index) while NSError is to be used for runtime errors. Since I realized that, I've felt a lot less need to use NSException. – Evan DiBiase Oct 15 '08 at 16:37
Except of course you're free to use exceptions as you want. Just because Apple guarantees (well mostly guarantees) that exceptions are used like that in their frameworks doesn't mean you should automatically adopt it too. – schwa Oct 16 '08 at 13:26
1  
While, of course, you're free to use exceptions and errors as you see fit, developer.apple.com/documentation/Cocoa/… recommends the distinction I described for all Cocoa code, not just Apple's code. – Evan DiBiase Oct 16 '08 at 15:38
And, I should add, I wasn't trying to ding you for using NSException too much. I just wanted to point out that Apple's distinction between NSError and NSException makes sense to me, and that it might help you write code that uses fewer exceptions, if that's your goal. – Evan DiBiase Oct 16 '08 at 15:39
Oh I know you weren't dinging me. I didn't realise that apple recommends that practice globally. Good to know. – schwa Oct 17 '08 at 15:35
vote up 4 vote down

I use #defines more often where I should be using const declarations.

Also, I'm probably a little too prolific in the NSNotifications I throw around; decoupling run amok!

link|flag
vote up 4 vote down

You mean, apart from grinning smugly when I can do in ten lines what takes an MFC coder 300? I suppose my biggest gripe about my own code is the explosion of accessors; next design work I do, I've set myself the challenge of using the smallest number of properties.

link|flag
vote up 3 vote down

Misusing Bindings to bind model object properties to each other. This use of Bindings leads to code that is hard to understand, hard to debug, and hard to test. Use Bindings only to bind a UI to a Controller. If you need decoupled models, use NSNotification instead of bindings. At least it's a bit more explicit than KVO.

link|flag
It is perfectly fine for one model object to observe another. – mmalc Oct 20 '08 at 0:31
@mmalc True. Unless you're using a more sane KVO than the default Cocoa model (see mikeash.com/?page=pyblog/…), I don't recommend using KVO to observe other model objects: it still ends up as spaghetti. With something like Google Toolbox for Mac's GTMNSObject+KeyValueObserving (code.google.com/p/google-toolbox-for-mac/…), I think using KVO is a totally reasonable thing to do. – Barry Wark Nov 9 at 18:08
I should add for future readers that @mmalc is a true expert. You should take my response with a grain of salt and his comment with the weight of a thousand engineers. – Barry Wark Nov 9 at 18:09
vote up 2 vote down

This is somewhat generic and not necessarily cocoa specific but:

Not refactoring enough because the laziness of having to update both .m and .h files.

XCode 3 makes it easier for certain kinds of refactoring like renames, but I found myself refactoring less frequently than on Java or C# and that's a bad habit I'm trying to break.

link|flag
1  
FYI, CMD-J in XCode makes refactoring a breeze! It updates the .h, the .m and all the other .ms that use your [whatever]. – Olie Nov 28 '08 at 16:56
vote up 2 vote down

Bad habit: Retaining my Java mindset.

My Java background leads me to obsessively check for a null before even thinking about doing anything with a variable, when I could be making use of Objective-C's ability to send a message to nil. (See: "Sending a message to nil?")

Instead of trying to preemptively catch a nil, I have to remind myself that Objective-C allows me to simply write code that gracefully works with return values of 0 or nil.

link|flag
vote up 1 vote down

I often find myself forgetting to type the return self; part of my constructors. Luckily I've begun to break this particular habit.

link|flag
I keep a basic -init method in my Quicksilver Shelf to avoid making mistakes like this (and because I hate typing the same thing 40,000 times). – Peter Hosey Nov 9 at 1:14
vote up 1 vote down

I learned to hate Interface@#$%-er back when it was far less useful and more buggy than it is now, and so tend to create all my UI in code, steadfastly still avoiding IB. It's silly, since I know it reduces my productivity a ton, but I just can't seem to be bothered to spend an afternoon learning how to plug things into IBs. (Yeah, I know how to do the simple stuff, but I always get annoyed when there's some medium-not-simple stuff to do, and IB seems to work against me.)

Ok, you convinced me -- I'm going to break THAT bad habit this weekend.

Thanks! :)

link|flag
vote up 1 vote down

Hard-coding strings like buttons/view titles. Pure lazy. Now need to get out everything in order to support localization :(

link|flag

Your Answer

Get an OpenID
or

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