2

Possible Duplicate:
What are best practices that you use when writing Objective-C and Cocoa?

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

Community
  • 1
  • 1
gcstr
  • 1,466
  • 1
  • 21
  • 45
  • In this thread I found this document http://google-styleguide.googlecode.com/svn/trunk/objcguide.xml. That's what I was looking for. Thank you. – gcstr Jul 15 '09 at 18:45

3 Answers3

6

See question

What are best practices that you use when writing Objective-C and Cocoa?

Community
  • 1
  • 1
David Basarab
  • 72,212
  • 42
  • 129
  • 156
1

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

Matt Bridges
  • 48,277
  • 7
  • 47
  • 61
  • 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? – gcstr Jul 15 '09 at 18:13
1

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

Jonathan Sterling
  • 18,320
  • 12
  • 67
  • 79