views:

178

answers:

3

Does anybody know a good reference about Objective-C/Cocoa Best Practices?
Project organization, methodologies, naming and etc.

+1  A: 

A great "K&R" style reference for objective-c is Programming in Objective C by Stephen G. Kochan.

Matt Bridges
Thanks for the tip, Matt. I'm looking for something specific, not about the language itself, but how to organize projects, how to deal with project versions and stuffs like that. Do you think this book can help me?
goo
+1  A: 

As for versioning, definitely set up a version control system. I wrote a tutorial on that here.

Jonathan Sterling